        :root {
            --primary: #1a1a1a;
            --secondary: #f5f5f0;
            --accent: #cfac45;
            --text: #2a2a2a;
            --border: #e0e0d8;
            --hover: #ae913d;
            --red: #D94452;
            --green: #27ae60;
            --orange: #f39c12;
        }

      

        /* ============================================================
           LOGIN OVERLAY
           ============================================================ */
        #login-overlay {
            position: fixed;
            inset: 0;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        #login-overlay.hidden {
            display: none;
        }

        .login-card {
            background: #fff;
            border: 1px solid var(--border);
            padding: 3rem 2.5rem 2.5rem;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
        }

        .login-logo {
            font-family: 'Crimson Pro', serif;
            font-weight: 300;
            font-size: 2.75rem;
            color: var(--red);
            line-height: 1;
            margin-bottom: .2rem;
        }

        .login-byline {
            font-size: .8rem;
            color: #aaa;
            margin-bottom: 2.5rem;
        }

        .login-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.75rem;
        }

        .login-field {
            margin-bottom: 1.25rem;
        }

        .login-field label {
            display: block;
            font-size: .72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #888;
            margin-bottom: .45rem;
        }

        .login-field input {
            width: 100%;
            padding: .75rem 1rem;
            border: 1px solid var(--border) !important;
            background: var(--secondary);
            font-size: .95rem;
            color: var(--primary);
            outline: none;
            box-sizing: border-box;
            height: auto !important;
            margin: 0 !important;
            box-shadow: none !important;
            font-family: 'Work Sans', sans-serif;
            transition: all 0.2s ease;
        }

        .login-field input::placeholder {
            color: #bbb;
        }

        .login-field input:focus {
            border-color: var(--accent) !important;
            background: #fff;
        }

        .login-btn {
            width: 100%;
            padding: .85rem;
            background: var(--accent);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: .9rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: .5rem;
            font-family: 'Work Sans', sans-serif;
            transition: background 0.2s ease;
        }

        .login-btn:hover {
            background: var(--hover);
        }

        .login-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .login-error {
            background: #fef1f0;
            border-left: 3px solid var(--red);
            color: #721c24;
            padding: .6rem .9rem;
            font-size: .85rem;
            margin-bottom: 1rem;
            display: none;
        }

        .login-error.show {
            display: block;
        }

        .login-footer {
            margin-top: 2rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
            font-size: .75rem;
            color: #bbb;
            text-align: center;
        }


/* ============================================================
   BLANKET MATERIALIZE TEAL OVERRIDE
   ============================================================ */
.tabs .tab a                                    { color: var(--accent) !important; }
.tabs .tab a.active,
.tabs .tab a.active:focus,
.tabs .tab a:hover                              { color: #fff !important;
                                                  background-color: var(--accent) !important; }
.tabs                                           { border-bottom: 2px solid var(--accent) !important; }
.tabs .indicator                                { background-color: var(--accent) !important; }
input:not([type]):focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus                                  { border-bottom-color: var(--accent) !important;
                                                  box-shadow: 0 1px 0 var(--accent) !important; }
input:not([type]):focus + label,
input[type="text"]:focus + label,
input[type="email"]:focus + label,
input[type="password"]:focus + label,
input[type="number"]:focus + label,
input[type="search"]:focus + label,
input[type="tel"]:focus + label,
input[type="url"]:focus + label,
textarea:focus + label                          { color: var(--accent) !important; }
input:not([type]).valid + label,
input[type="text"].valid + label,
input[type="email"].valid + label               { color: var(--accent) !important; }
select:focus                                    { border-bottom-color: var(--accent) !important;
                                                  box-shadow: 0 1px 0 var(--accent) !important; }
select:focus + label                            { color: var(--accent) !important; }
[type="checkbox"]:checked + label               { color: var(--accent) !important; }
[type="checkbox"]:checked + label::before      { border-color: var(--accent) !important;
                                                  background-color: var(--accent) !important; }
[type="radio"]:checked + label::before         { border-color: var(--accent) !important; }
[type="radio"]:checked + label::after          { background-color: var(--accent) !important; }
input[type="range"]::-webkit-slider-thumb      { background-color: var(--accent) !important; }
input[type="range"]::-moz-range-thumb          { background-color: var(--accent) !important; }
.progress .determinate                         { background-color: var(--accent) !important; }
.progress .indeterminate::before,
.progress .indeterminate::after                { background-color: var(--accent) !important; }
.btn.btn-flat                                  { color: var(--accent) !important; }
.btn-floating                                  { background-color: var(--accent) !important; }
.nav-bar .nav-item.active                      { border-bottom-color: var(--accent) !important; }
/* Materialize dropdown - correct selectors */
.dropdown-content li > a:hover,
.dropdown-content li > div:hover                { background-color: rgba(207, 172, 69, 0.15) !important;
                                                  color: var(--accent) !important; }
.dropdown-content li > a.active,
.dropdown-content li > div.active               { background-color: rgba(207, 172, 69, 0.15) !important;
                                                  color: var(--accent) !important; }
.dropdown-content li > a:focus,
.dropdown-content li > div:focus                { background-color: rgba(207, 172, 69, 0.15) !important;
                                                  color: var(--accent) !important; }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--secondary);
            color: var(--text);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Crimson Pro', serif;
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        
        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }
        
        /* Sidebar */
        .sidebar {
            width: 250px;
            background: white;
            color: var(--text);
            display: flex;
            flex-direction: column;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            border-right: 1px solid var(--border);
        }
        
        .sidebar-header {
            padding: 2rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        
        .sidebar-header h1 {
            font-size: 2rem;
            color: var(--red);
            margin-bottom: 0.5rem;
        }
        
        .sidebar-header p {
            font-size: 0.85rem;
            color: #999;
            line-height: 1.4;
        }



        .user-pill {
            display: none;
            align-items: center;
            gap: 0.4rem;
            background: rgba(207, 172, 69, 0.12);
            border: 1px solid rgba(207, 172, 69, 0.3);
            border-radius: 20px;
            padding: 0.2rem 0.65rem 0.2rem 0.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            width: fit-content;
            cursor: pointer;
            margin-top: 0.6rem;
            transition: all 0.2s ease;
        }

        .user-pill i {
            font-size: 0.9rem;
            color: var(--accent);
        }

        .user-pill:hover {
            background: rgba(207, 172, 69, 0.18);
            border-color: rgba(207, 172, 69, 0.4);
        }
        
        .main-nav {
            flex: 1;
            padding: 1rem 0;
        }
        
        .main-nav-item {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 3px solid transparent;
        }
        
        .main-nav-item:hover {
            background: var(--secondary);
            color: var(--hover);
        }
        
        .main-nav-item.active {
            background: rgba(207, 172, 69, 0.1);
            color: var(--accent);
            border-left-color: var(--accent);
        }
        
        .main-nav-item i {
            margin-right: 0.75rem;
            vertical-align: middle;
        }
        
        /* Nav element styling */
        nav {
            background-color: white;
        }
        
        /* Client Sub-Navigation Styling */
        #client-subnav {
            background: var(--secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        #client-subnav .back-button {
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        #client-subnav .back-button:hover {
            color: var(--hover);
            background: rgba(207, 172, 69, 0.05);
        }
        
        .viewing-section {
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.5);
        }
        
        .viewing-label {
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        
        #sidebar-client-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        #sidebar-client-owner {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.25rem;
        }
        
        #connected-accounts {
            background: white;
            border-top: 1px solid var(--border);
        }
        
        #connected-accounts .connections-label {
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        #connected-accounts-list .connection-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        #connected-accounts-list i {
            font-size: 1.2rem;
            color: #27ae60;
        }
        
        #connected-accounts-list span {
            font-size: 0.9rem;
            color: var(--text);
        }
        
        /* Notification Badges */
        .notification-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            margin-left: 8px;
            font-weight: bold;
            vertical-align: middle;
        }
        
        .red-badge {
            background: #ba4134;
            color: white;
        }
        
        /* Main Content */
        .main-content {
            margin-left: 250px;
            flex: 1;
            padding: 2rem;
            width: calc(100% - 250px);
        }
        
        .content-header {
            padding: 1rem 0 2rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .content-header h2 {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .content-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        
        /* Tab System */
        .main-tab-content {
            display: none;
        }
        
        .main-tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Client List */
        .client-controls {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            align-items: center;
        }
        
        .search-box {
            flex: 1;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 3rem;
            border: 1px solid var(--border);
            background: white;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.95rem;
        }
        
        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }
        
        .filter-select {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            background: white;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.9rem;
            min-width: 150px;
        }
        
        .btn-invite {
            background: var(--accent);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-invite:hover {
            background: var(--hover);
        }
        
        /* Client Table */
        .client-table {
            background: white;
            border: 1px solid var(--border);
        }
        
        .client-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .client-table thead {
            background: var(--secondary);
            border-bottom: 2px solid var(--border);
        }
        
        .client-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #666;
        }
        
        .client-table td {
            padding: 1.5rem 1rem;
            border-bottom: 1px solid var(--border);
        }
        
        .client-table tbody tr {
            cursor: pointer;
            transition: background 0.2s ease;
        }
        
        .client-table tbody tr:hover {
            background: var(--secondary);
        }
        
        .business-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .business-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }
        
        .business-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--primary);
        }
        
        .business-type {
            font-size: 0.85rem;
            color: #999;
        }
        
        .status-badge {
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .status-healthy {
            background: #d4edda;
            color: #155724;
        }
        
        .status-at-risk {
            background: #fff3cd;
            color: #856404;
        }
        
        .status-overdue {
            background: #f8d7da;
            color: #721c24;
        }
        
        .revenue-info {
            font-weight: 600;
            font-size: 1rem;
        }
        
        .revenue-note {
            font-size: 0.8rem;
            color: #999;
            margin-top: 0.25rem;
        }
        
        .connection-badges {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .connection-badge {
            padding: 0.25rem 0.6rem;
            border-radius: 3px;
            font-size: 0.7rem;
            font-weight: 600;
            background: var(--accent);
            color: white;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            background: white;
            padding: 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }
        
        .stat-icon {
            font-size: 1.5rem;
        }
        
        .stat-icon.green { color: var(--green); }
        .stat-icon.orange { color: var(--orange); }
        .stat-icon.red { color: var(--red); }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--primary);
            font-family: 'Crimson Pro', serif;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-detail {
            color: #999;
            font-size: 0.85rem;
        }
        
        /* Client View Tabs */
        .client-tabs {
            background: transparent;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
            display: flex;
            gap: 0;
        }
        
        .client-tab {
            padding: 1rem 1.5rem;
            color: #666;
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.85rem;
            cursor: pointer;
            border: none;
            background: transparent;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .client-tab:hover {
            color: var(--primary);
        }
        
        .client-tab.active {
            color: var(--primary);
            border-bottom-color: var(--accent);
        }
        
        .client-tab-content {
            display: none;
        }
        
        .client-tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }
        
        /* Ingestion Styles (from your existing code) */
        .upload-section {
            background: white;
            padding: 3rem;
            border: 1px solid var(--border);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .upload-section:hover {
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .upload-area {
            border: 2px dashed var(--border);
            padding: 3rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--secondary);
        }
        
        .upload-area:hover {
            border-color: var(--accent);
            background: #fafaf5;
        }
        
        .upload-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        .form-section {
            background: white;
            padding: 3rem;
            border: 1px solid var(--border);
            display: none;
        }
        
        .form-section.active {
            display: block;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .input-field label {
            font-family: 'Work Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #666;
        }
        
        .btn-submit {
            background: var(--primary);
            color: white;
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0 3rem;
            height: 50px;
            line-height: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: none;
        }
        
        .btn-submit:hover {
            background: var(--accent);
        }
        
        .file-info {
            margin-top: 1rem;
            padding: 1rem;
            background: #fafaf5;
            border-left: 3px solid var(--accent);
            font-size: 0.9rem;
            display: none;
        }
        
        .file-info.show {
            display: block;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 2rem;
        }
        
        .loading.show {
            display: block;
        }
        
        /* Bulk Upload Progress */
        .bulk-progress {
            background: white;
            padding: 2rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        
        .bulk-progress h5 {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .bulk-result-item {
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: white;
            border-left: 3px solid #ddd;
            border-radius: 3px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .bulk-result-item.success {
            border-left-color: #27ae60;
            background: #f1f8f4;
        }
        
        .bulk-result-item.error {
            border-left-color: #e74c3c;
            background: #fef1f0;
        }
        
        .bulk-result-item.duplicate {
            border-left-color: #f39c12;
            background: #fff3cd;
        }
        
        .bulk-result-item i {
            font-size: 18px;
        }
        
        .status-message {
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            border-left: 3px solid var(--accent);
            background: #fafaf5;
            font-size: 0.95rem;
            display: none;
        }
        
        .status-message.show {
            display: block;
        }
        
        .status-message.success {
            border-left-color: #4caf50;
            background: #f1f8f4;
        }
        
        .status-message.error {
            border-left-color: #f44336;
            background: #fef1f0;
        }
        
        /* Reconciliation Styles */
        .recon-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .recon-card {
            background: white;
            padding: 1.5rem;
            border: 1px solid var(--border);
            text-align: center;
        }
        
        .recon-number {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .recon-label {
            font-size: 0.85rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .recon-filters {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 0.5rem 1.25rem;
            border: 1px solid var(--border);
            background: white;
            cursor: pointer;
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .doc-view-btn {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            background-color: var(--primary);
        }

        .results-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border: 1px solid var(--border);
        }
        
        .results-table th {
            background: var(--primary);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .results-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        
        .results-table tbody tr:hover {
            background: var(--secondary);
        }
        
        .action-btn {
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            border: none;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            border-radius: 3px;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .btn-view {
            background: #3498db;
            color: white;
        }
        
        .btn-view:hover {
            background: #2980b9;
        }
        
        .btn-resolve {
            background: #27ae60;
            color: white;
        }
        
        .btn-resolve:hover {
            background: #229954;
        }
        
        .btn-delete {
            background: #e74c3c;
            color: white;
        }
        
        .btn-delete:hover {
            background: #c0392b;
        }
        
        /* Details and Document Viewer Rows */
        .details-row {
            background: #f9f9f9 !important;
        }
        
        .details-row td {
            padding: 0 !important;
        }
        
        .document-viewer-row {
            background: #fff !important;
        }
        
        .document-viewer-row td {
            padding: 0 !important;
        }
        
        .document-viewer-row iframe {
            display: block;
        }
        
        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            color: var(--hover);
        }
        
        .back-button i {
            font-size: 1.2rem;
        }
        
        /* Auth Status */
        .auth-status {
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .auth-status.connected {
            background: #f1f8f4;
            color: #2e7d32;
            border: 1px solid #c8e6c9;
        }
        
        .auth-status.disconnected {
            background: #fef1f0;
            color: #c62828;
            border: 1px solid #ffcdd2;
        }
        
        .btn-auth {
            background: var(--accent);
            color: white;
            padding: 0 2rem;
            height: 45px;
            line-height: 45px;
            border: none;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.85rem;
            cursor: pointer;
            margin-left: 1rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .sidebar {
                width: 200px;
            }
            
            .main-content {
                margin-left: 200px;
                width: calc(100% - 200px);
            }
        }
        
        @media (max-width: 768px) {
            .app-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                position: relative;
                height: auto;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
        }
