/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.above-space {
    margin-top: 20px;
}

#logo {
    position: absolute;
    background: url(https://wing-media-uploads.s3.us-west-1.amazonaws.com/b90.png);
    width: 40px;
    height: 40px;
    background-size: cover;
    top: 9px;
    left: 20px;
}

#logoWord {
    position: absolute;
    left: 65px;
    width: 150px;
    top: 17px;
    font-size: 20px;
    letter-spacing: -1px;
}

.bold {
    font-weight: 600;
}

div#menu-subheading {
    margin-left: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #989898;
    margin-bottom: 10px;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    min-height: 100vh;
    background: #f5f5f5;
}

/* Sidebar Styles */
.sidebar {
    background: #f9fafb;
    padding: 16px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.search-container {
    margin-bottom: 24px;
}

.search-bar {
    margin-top: 40px;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 11px;
    padding-right: 8px;
}

.search-bar svg {
    color: #6b7280;
    margin-right: 8px;
}

.search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.shortcut {
    color: #6b7280;
    font-size: 12px;
    padding: 2px 6px;
    background: #f3f4f6;
    border-radius: 4px;
    width: 81px;
}

/* Menu Styles */
.nav-menu {
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.menu-item:hover {
    background: #f3f4f6;
}

.menu-item svg:not(.chevron) {
    margin-right: 12px;
    color: #6b7280;
    flex-shrink: 0;
}

.menu-toggle {
    justify-content: space-between;
    width: 100%;
    text-decoration: none !important;
}

.menu-toggle .chevron {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.menu-group {
    border-radius: 6px;
    padding: 4px;
}

.menu-group.active {
    background: #f3f4f6;
}

.menu-group.active .chevron {
    transform: rotate(180deg);
}

.menu-group:not(.active) .submenu {
    display: none;
}

.submenu {
    margin-left: 44px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.submenu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #374151;
    padding: 4px 8px;
    border-radius: 4px;
}

.submenu-link {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.submenu-item:hover .submenu-link {
    color: #289efd;
}

.badge {
    background: rgba(40, 158, 253, 0.1);
    color: #289efd;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 15px;
}

.bottom-menu {
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

/* Main Content Styles */
.main-content {
    padding: 30px;
}

.transaction-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Right Sidebar Styles */
.right-sidebar {
    padding: 20px;
    border-left: 1px solid #eee;
}

.primary-button {
    width: 100%;
    padding: 12px;
    background: #289efd;
    color: white;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.primary-button:hover {
    background: #1a8ae9;
}

.secondary-button {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.secondary-button:hover {
    background: #f9fafb;
}

.virtual-cards {
    margin-top: 30px;
}

.card-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.balance {
    color: #666;
    font-size: 14px;
}

/* Typography */
h1 {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 24px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
} 