* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

/* Top Navigation Bar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #000000;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .hamburger-menu {
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Clean Oaklandish-style tree icon */
.brand-icon {
    font-size: 28px;
    filter: grayscale(0.2) contrast(1.1);
    color: #22c55e;
    position: relative;
}

.brand-text {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.2);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    outline: none;
    border: 1px solid transparent;
}

.brand-text:hover {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.brand-text:focus {
    background-color: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* Subtle Oaklandish tree animation */
.brand-icon {
    animation: oaklandish-pulse 4s ease-in-out infinite;
}

@keyframes oaklandish-pulse {
    0%, 100% {
        transform: scale(1);
        filter: grayscale(0.2) contrast(1.1);
    }
    50% {
        transform: scale(1.02);
        filter: grayscale(0.1) contrast(1.2);
    }
}

.nav-center .toggle-switch {
    display: flex;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.toggle-option {
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-option.active {
    background: #0052ff;
}

.toggle-icon {
    font-size: 16px;
    font-weight: 600;
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-icon {
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Portfolio Overview */
.portfolio-overview {
    padding: 24px 16px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.portfolio-info {
    text-align: left;
    flex: 1;
}

.total-balance {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.daily-change {
    font-size: 14px;
    font-weight: 500;
    color: #00d4aa;
    display: flex;
    align-items: center;
    gap: 4px;
}

.daily-change.positive {
    color: #00d4aa;
}

.daily-change.negative {
    color: #ff4444;
}

.portfolio-controls {
    display: flex;
    gap: 8px;
}

.refresh-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 8px 12px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 80px;
}

.refresh-btn:hover {
    background: #333333;
    border-color: #00d4aa;
}

.refresh-btn:active {
    transform: scale(0.95);
}

.refresh-btn.refreshing {
    background: #00d4aa;
    border-color: #00d4aa;
    color: #000000;
}

.refresh-btn.refreshing .refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.refresh-icon {
    font-size: 16px;
}

.refresh-text {
    font-size: 12px;
}

.daily-change.negative {
    color: #ff4444;
}

/* Price Graph Section */
.price-graph-section {
    padding: 0 16px 24px;
}

.graph-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    height: 500px;
    position: relative;
}

.graph-container canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Pie chart specific styling for larger display */
.graph-container.pie-chart-active {
    height: 600px;
}

.graph-container.pie-chart-active canvas {
    max-height: 500px !important;
}



.timeframe-selectors {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 8px 0 16px 0;
}

.timeframe-btn {
    background: transparent;
    border: none;
    color: #666666;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeframe-btn.active {
    background: #0052ff;
    color: #ffffff;
}

.timeframe-btn:hover:not(.active) {
    background: #1a1a1a;
    color: #ffffff;
}

/* Chart Type Toggle */
.chart-type-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 8px 0;
}

.chart-type-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chart-type-btn.active {
    background: #0052ff;
    border-color: #0052ff;
    color: #ffffff;
}

.chart-type-btn:hover:not(.active) {
    background: #2a2a2a;
    border-color: #444444;
}

/* Asset Breakdown */
.asset-breakdown {
    padding: 0 16px 24px;
}

.asset-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.asset-item:hover {
    background: #2a2a2a;
}

.asset-icon {
    font-size: 24px;
    margin-right: 16px;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.asset-amount {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.asset-arrow {
    font-size: 18px;
    color: #666666;
}

.asset-item.empty-state {
    opacity: 0.6;
    cursor: default;
}

.asset-item.empty-state:hover {
    background: #1a1a1a;
    transform: none;
}

.asset-item.empty-state .asset-amount {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

/* Content Categories */
.content-categories {
    display: flex;
    gap: 8px;
    padding: 0 16px 24px;
}

.category-btn {
    background: #1a1a1a;
    border: none;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn.active {
    background: #ffffff;
    color: #000000;
}

.category-btn:hover:not(.active) {
    background: #2a2a2a;
}

/* Cryptocurrency Listings */
.crypto-listings {
    padding: 0 16px 24px;
}

.crypto-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.crypto-item:hover {
    background: #2a2a2a;
}

.crypto-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    background: #0052ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    margin-right: 12px;
    font-size: 16px;
}

.crypto-info {
    flex: 1;
}

.crypto-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.crypto-symbol {
    font-size: 14px;
    color: #666666;
}

.crypto-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mini-chart {
    font-size: 20px;
    color: #00d4aa;
}

.crypto-right {
    text-align: right;
    flex: 1;
}

.crypto-price {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.crypto-change {
    font-size: 14px;
    color: #666666;
}

.crypto-change.positive {
    color: #00d4aa;
}

.crypto-change.negative {
    color: #ff4444;
}


/* Bottom Navigation */
.bottom-nav {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 20px;
    z-index: 100;
    margin-top: 40px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item.active {
    color: #0052ff;
}

.nav-item:not(.active) {
    color: #666666;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-label {
    font-size: 12px;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #1a1a1a;
    margin: 5vh auto;
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    min-height: fit-content;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
}

.close {
    color: #666666;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
}

.close:hover {
    color: #ffffff;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #000000;
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #0052ff;
}

.form-group input::placeholder {
    color: #666666;
}

.submit-btn {
    background: #0052ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0043cc;
    transform: translateY(-1px);
}

/* Radio button styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #2a2a2a;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #0052ff;
    background: #0052ff;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Input Method Selector */
.input-method-selector {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.input-method-selector .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
}

.input-method-selector .radio-custom {
    margin-right: 8px;
}

/* Input Toggle Button */
.input-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.input-toggle-btn {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.input-toggle-btn:hover {
    background: #404040;
    border-color: #0052ff;
}

/* Price Loading Circle */
.price-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #404040;
    border-radius: 50%;
    border-top-color: #0052ff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Asset Dropdown */
.asset-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.asset-dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a2a2a;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    border-radius: 8px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 4px;
    border: 1px solid #404040;
    overflow: hidden;
}

.asset-dropdown-content.show {
    display: block;
}

.dropdown-asset-item {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #404040;
    transition: background-color 0.2s ease;
}

.dropdown-asset-item:last-child {
    border-bottom: none;
}

.dropdown-asset-item:hover {
    background-color: #404040;
}

.dropdown-asset-name {
    font-weight: 500;
    flex: 1;
}

.dropdown-asset-value {
    font-weight: 600;
    color: #00d4aa;
}

.dropdown-asset-details {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
}

.dropdown-add-btn {
    background: #0052ff;
    color: white;
    border: none;
    padding: 12px 16px;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.dropdown-add-btn:hover {
    background: #0043cc;
}

/* Fetch button styles */
.fetch-btn {
    background: #0052ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.fetch-btn:hover {
    background: #0043cc;
    transform: translateY(-1px);
}

.fetch-btn:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #2a2a2a;
    border-top: 2px solid #0052ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Category View Styles */
.category-asset-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.category-asset-item:hover {
    background: #2a2a2a;
}

.asset-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.asset-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.asset-item-value {
    font-size: 18px;
    font-weight: 700;
    color: #0052ff;
}

.asset-item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
    color: #666666;
}

.asset-item-detail {
    display: flex;
    justify-content: space-between;
}

.asset-item-detail strong {
    color: #ffffff;
}

.delete-asset-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.delete-asset-btn:hover {
    background: #cc3333;
    transform: translateY(-1px);
}

.category-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.back-btn {
    background: #666666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.back-btn:hover {
    background: #555555;
    transform: translateY(-1px);
}

#addToCategoryBtn {
    flex: 2;
    background: #0052ff;
}

#addToCategoryBtn:hover {
    background: #0043cc;
}

.empty-category {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
    font-style: italic;
}

.empty-category h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-bottom: 0;
    }
    
    .total-balance {
        font-size: 28px;
    }
    
    .graph-container {
        height: 540px;
    }
    
    .graph-container.pie-chart-active {
        height: 640px;
    }
    

    
}

/* Animation for chart loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-graph-section, .asset-breakdown, .crypto-listings {
    animation: fadeIn 0.6s ease-out;
}

/* Quick Add Assets Section */
.quick-add-section {
    padding: 20px 16px;
    margin-bottom: 20px;
}

.quick-add-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

.quick-add-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.quick-add-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 80px;
}

.quick-add-btn:hover {
    background: #333333;
    border-color: #00d4aa;
    transform: translateY(-2px);
}

.quick-add-btn:active {
    transform: translateY(0);
}

.quick-add-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.quick-add-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.quick-add-btn.stocks:hover {
    border-color: #0052ff;
}

.quick-add-btn.crypto:hover {
    border-color: #f7931a;
}

.quick-add-btn.cash:hover {
    border-color: #00d4aa;
}

.quick-add-btn.roth:hover {
    border-color: #00d4aa;
}

.quick-add-btn.real-estate:hover {
    border-color: #ff6b35;
}

.quick-add-btn.vehicles:hover {
    border-color: #ff6b35;
}

/* Empty Chart State */
.empty-chart-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    height: 300px;
}

.empty-chart-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-chart-state h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.empty-chart-state p {
    color: #666666;
    font-size: 16px;
    margin: 0 0 24px 0;
    max-width: 300px;
    line-height: 1.5;
}

.add-assets-btn {
    background: #0052ff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.add-assets-btn:hover {
    background: #0043cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

.add-assets-btn .btn-icon {
    font-size: 18px;
}

.add-assets-btn .btn-text {
    font-size: 16px;
}

/* Profile Button */
.profile-btn {
    position: relative;
}

.profile-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #00d4aa;
    border-radius: 50%;
    display: none;
}

.profile-btn.logged-in::after {
    display: block;
}

/* Authentication Modal */
.profile-modal {
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-form {
    padding: 0;
}

.auth-subtitle {
    color: #999999;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 24px;
    border-bottom: 1px solid #333333;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: #666666;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: #0052ff;
    border-bottom-color: #0052ff;
}

.auth-tab:hover {
    color: #ffffff;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
}

.auth-note {
    color: #666666;
    font-size: 12px;
    margin: 0;
}

/* Profile Dashboard */
.profile-dashboard {
    padding: 0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 12px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: #0052ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.profile-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.profile-status {
    color: #00d4aa;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.profile-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.profile-btn:hover {
    background: #333333;
    border-color: #0052ff;
}

.profile-btn.sync-btn:hover {
    border-color: #00d4aa;
}

.profile-btn.backup-btn:hover {
    border-color: #0052ff;
}

.profile-btn.logout-btn:hover {
    border-color: #ff4444;
    background: #2a1a1a;
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    color: #666666;
    font-size: 14px;
}

.stat-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
} 