html, body {
    height: 100%;
    margin: 0;
}

/* ================================
   GLOBAL RESET + BODY
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f6f8;
    color: #222;
    height: 100vh;
    overflow: auto;
}

/* ================================
   AUTH HEADER (BEFORE LOGIN)
================================ */
.login-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-form input {
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 14px;
}

.login-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    background: #2980b9;
}

/* ================================
   AUTH VISIBILITY LOGIC
================================ */
body:not(.authenticated) .auth-header {
    display: flex;
}

body:not(.authenticated) .dashboard-container {
    display: none;
}

body.authenticated .auth-header {
    display: none;
}

body.authenticated .dashboard-container {
    display: flex;
}

/* ================================
   DASHBOARD LAYOUT
================================ */
.dashboard-container {
    display: flex;
    height: 100vh;
}

/* ================================
   SIDEBAR (LEFT FIXED)
================================ */
.sidebar {
    width: 240px;
    background: #05192d;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    flex-shrink: 0;
}

.sidebar button {
    background: #162536;
    border: none;
    padding: 12px 14px;
    color: #d6dce2;
    border-radius: 6px;
    margin-bottom: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s, transform 0.1s;
    width: 100%;
}

.sidebar button:hover {
    background: #1f344c;
    transform: translateX(3px);
}

.sidebar button:disabled {
    background: #2a3c50;
    color: #8a8f96;
    cursor: not-allowed;
}

.sidebar-user {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #1d2d3a;
    font-size: 14px;
}

.sidebar-username {
    font-weight: bold;
    margin-bottom: 3px;
}

.sidebar-client {
    opacity: 0.75;
    margin-bottom: 10px;
}

.sidebar-user .logout-btn {
    width: 100%;
    background: #3d8bfd;
    padding: 8px;
    border-radius: 6px;
    border: none;
    color: white;
    text-align: center;
}

.sidebar-user .logout-btn:hover {
    background: #5a9bff;
}

/* ================================
   MAIN CONTENT (RIGHT)
================================ */
.main {
    flex: 1;
    padding: 20px 26px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* ================================
   PAGE STYLES
================================ */
.page {
    display: none;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

.page:first-child {
    display: flex;
}

/* ================================
   FILTER CONTAINERS - FIXED
================================ */
.filter-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    margin: 0;
}

.filter-group select,
.filter-group input {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    min-width: 120px;
}

/* Specific filter container styles */
.controls-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
    align-items: end;
}

.controls-container-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.control-group label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
}

.control-group select {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

/* Share of Voice specific filters */
.sov-filter-row {
    display: flex;
    align-items: end;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.sov-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.sov-filter-label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    margin: 0;
}

.sov-filter-select {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.sov-filter-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    height: fit-content;
    margin-top: 18px;
}

.sov-filter-button:hover {
    background: #2980b9;
}

/* ================================
   KPI CARDS
================================ */
.kpi {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.kpi div {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    border-left: 4px solid #3a8bef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.kpi div strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.kpi div span {
    font-size: 13px;
    color: #555;
}

/* ================================
   CHART BOXES
================================ */
.chart-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.chart-box h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.full-width {
    grid-column: 1 / -1;
}

.chart-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-row .chart-box {
    flex: 1;
    margin-bottom: 0;
}

/* ================================
   TABLE STYLES
================================ */
.table-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead th {
    background: #f0f2f5;
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 2px solid #ccc;
    padding: 10px 12px;
    text-align: left;
}

th, td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

tr:hover {
    background: #f8f9fa;
}

/* ================================
   FORM ELEMENTS
================================ */
select, input[type="date"], input[type="month"] {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #e9ecef;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .kpi {
        flex-direction: column;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: 1;
    }
    
    .chart-row {
        flex-direction: column;
    }
    
    .filter-row,
    .controls-container,
    .sov-filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group,
    .control-group,
    .sov-filter-group {
        min-width: auto;
    }
}

/* Custom date range styling */
#custom-date-range,
#custom-date-range-sov {
    display: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

#custom-date-range.show,
#custom-date-range-sov.show {
    display: flex;
}

/* Page header styling */
.page-header {
    margin-bottom: 20px;
}

.page-header h2 {
    color: #333;
    margin-bottom: 5px;
}

.page-header p {
    color: #666;
    font-size: 14px;
}

/* Data table specific styling */
.data-table {
    width: 100%;
    font-size: 13px;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Ensure main content areas are properly structured */
#main-mtd,
#main-sellin,
#main-ams,
#main-shareofvoice,
#main-operations,
#main-invoices,
#main-sellin-forecast,
#main-ams-intelligence,
#main-miscellaneous {
    display: none;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

/* Make sure the first visible page is properly displayed */
.main > div:first-child {
    display: flex;
}

/* ================================
   MTD PAGE FILTERS - FIXED
================================ */
#main-mtd .filter-row {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

#main-mtd .filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

#main-mtd .filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    margin: 0;
}

#main-mtd .filter-group select,
#main-mtd .filter-group input {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

#main-mtd #custom-date-range {
    display: none;
    gap: 10px;
    align-items: end;
    flex-wrap: wrap;
}

#main-mtd #custom-date-range.show {
    display: flex;
}

#main-mtd .custom-date-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ================================
   SIMPLE INLINE FILTERS (Like Sellin page)
================================ */
.chart-box > div:not(.table-container):not(.kpi) {
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.chart-box > div:not(.table-container):not(.kpi) > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-box > div:not(.table-container):not(.kpi) label {
    font-weight: 600;
    margin: 0;
}

/* ================================
   STANDARD FILTER STYLES
================================ */
.filter-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item label {
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.filter-item select {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

/* For filters at the top of pages (with background) */
.page-filters {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

/* For filters inside chart boxes (clean, no background) */
.chart-filters {
    margin-bottom: 15px;
}

/* ================================
   SIDEBAR FIX
================================ */
.sidebar {
    justify-content: flex-start; /* Ensure content starts from top */
    gap: 20px;
}

.sidebar-user {
    margin-top: 0; /* Remove the auto margin that pushes it down */
    padding-top: 20px;
    border-top: 1px solid #1d2d3a;
}

.sidebar-menu {
    flex: 1; /* Allow the menu to take available space */
    overflow-y: auto; /* Add scroll if too many items */
}

/* ================================
   COMPACT KPI STYLES
================================ */
.kpi {
    display: flex;
    gap: 8px; /* Reduced from 12px */
    margin-bottom: 15px; /* Reduced from 20px */
    flex-wrap: wrap;
}

.kpi div {
    flex: 1;
    min-width: 180px; /* Slightly smaller min-width */
    background: #fff;
    padding: 10px 12px; /* Reduced padding */
    border-radius: 6px;
    border-left: 4px solid #3a8bef;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* Lighter shadow */
}

.kpi div strong {
    font-size: 16px; /* Slightly smaller */
    display: block;
    margin-bottom: 2px; /* Reduced spacing */
}

.kpi div span {
    font-size: 12px; /* Smaller label */
    color: #666;
}

/* ================================
   SHARE OF VOICE BUTTON ALIGNMENT FIX
================================ */
.sov-filter-row {
    align-items: end;
}

.sov-filter-button {
    margin-top: 0;
    height: auto;
    padding: 8px 20px; /* More horizontal padding */
    min-width: 80px; /* Minimum width */
    align-self: end;
}

/*BUYBOX SPECIFI*/

/* Badges for table */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-secondary {
    background-color: #e2e3e5;
    color: #383d41;
}

.badge-light {
    background-color: #f8f9fa;
    color: #212529;
}

/* Heatmap styling */
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Full-width table styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    padding: 12px 8px;
    text-align: left;
    border-bottom: 2px solid #34495e;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

.data-table tr:nth-child(even) {
    background-color: #fafafa;
}

.data-table tr:hover:nth-child(even) {
    background-color: #f0f0f0;
}

/* Sparkline container */
.sparkline-container {
    position: relative;
    cursor: pointer;
}

.sparkline-container canvas {
    display: block;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

/* Add spacing between table header and first row */
.data-table thead tr {
    height: 50px; /* Increase header height */
}

.data-table tbody tr:first-child td {
    padding-top: 15px; /* Add extra padding to first row */
}

/* Or add margin using border spacing */
.data-table {
    border-spacing: 0 5px; /* Adds vertical spacing between rows */
    border-collapse: separate; /* Required for border-spacing to work */
}

.data-table th {
    padding-bottom: 15px; /* Extra padding at bottom of header */
}

.data-table td {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* CONTENT PAGE */
/* Content Page Specific Styles */
#main-content .kpi {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#main-content .kpi-card  {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
    border-left: 4px solid #1890ff;
}

#main-content-page .kpi-value {
    font-size: 24px;
    font-weight: bold;
    color: #1890ff;
}

#main-content-page .kpi-label {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

#main-content-page .kpi-trend {
    font-size: 11px;
    color: #52c41a;
}

#main-content-page .kpi-sub {
    font-size: 11px;
    color: #999;
}

#main-content-page .chart-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

#main-content-page .chart-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#main-content-page .chart-box.full-width {
    flex: 1 0 100%;
}

#main-content-page .table-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-top: 10px;
}

#main-content-page table {
    width: 100%;
    border-collapse: collapse;
}

#main-content-page th {
    background: #fafafa;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 10;
}

#main-content-page td {
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
}

#main-content-page tr:hover {
    background: #fafafa;
}

#main-content-page .text-danger {
    color: #ff4d4f;
}

#main-content-page .text-success {
    color: #52c41a;
}

#main-content-page .text-left {
    text-align: left;
}

#main-content-page .table-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#main-content-page .btn-export {
    background: #1890ff;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

#main-content-page .btn-export:hover {
    background: #40a9ff;
}

#main-content-page .charts-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

#main-content-page .error-message {
    text-align: center;
    padding: 40px;
    color: #ff4d4f;
    background: #fff2f0;
    border-radius: 8px;
}

#content-sku-table {
    font-size: 12px;
}

#content-sku-table th {
    background: #f5f5f5;
    font-weight: 600;
    text-align: left;
    padding: 8px 10px;
    border-bottom: 2px solid #e8e8e8;
}

#content-sku-table td {
    padding: 6px 10px;
    border-bottom: 1px solid #f0f0f0;
}

#content-sku-table .text-left {
    text-align: left;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#content-sku-table .text-danger {
    color: #ff4d4f;
    font-weight: 500;
}

#content-sku-table .text-success {
    color: #52c41a;
    font-weight: 500;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #fafafa;
    border-radius: 4px;
}

.table-controls select {
    padding: 5px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: white;
}

.btn-export {
    background: #1890ff;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-export:hover {
    background: #40a9ff;
}

/* Filter styles */
#content-filters {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    transition: all 0.3s;
}

.filter-select:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    outline: none;
}

.filter-loading {
    text-align: center;
    padding: 20px;
    color: #999;
}

.filter-error {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.filter-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 8px;
}

.loading-spinner {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #1890ff;
    font-weight: 600;
}

#content-filters {
    position: relative; /* Needed for absolute positioning of overlay */
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
}

/* ================================
   CONTENT PAGE KPI - COMPACT STYLE (Matching other pages)
================================ */

/* Target the content page specifically */
#main-content .kpi {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

#main-content .kpi > div {
    flex: 1;
    min-width: 180px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 4px solid #3a8bef;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

#main-content .kpi .kpi-value {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
    color: #222;
}

#main-content .kpi .kpi-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

#main-content .kpi .kpi-trend {
    font-size: 11px;
    color: #666;
    margin-top: auto;
}

#main-content .kpi .kpi-sub {
    font-size: 11px;
    color: #999;
}

/* Different border colors for each KPI card in content page */
#main-content .kpi > div:nth-child(1) { border-left-color: #3a8bef; } /* Blue */
#main-content .kpi > div:nth-child(2) { border-left-color: #52c41a; } /* Green */
#main-content .kpi > div:nth-child(3) { border-left-color: #faad14; } /* Orange */
#main-content .kpi > div:nth-child(4) { border-left-color: #f5222d; } /* Red */

/* Hide dashboard by default */
.dashboard-container {
    display: none;
}

/* Show dashboard when authenticated */
body.authenticated .dashboard-container {
    display: flex; /* Or whatever display you need */
}

/* Hide auth header when authenticated */
body.authenticated .auth-header {
    display: none;
}

/* LOGIN BEUTFIY*/
.auth-header {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at top,
        #1f2937 0%,
        #0f172a 60%
    );
}

/* Logo */
.login-logo {
    display: block;
    margin: 0 auto 18px;
    max-height: 36px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    text-align: center;
}

.remember-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    margin: 6px 0 22px;
    margin-top: 4px;
    justify-content: flex-start;
}

.login-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.login-btn:hover {
    background: #1e4fd8;
}

.login-logo {
    display: block;
    margin: 0 auto 20px;
    max-height: 48px;
    transform: translateY(-6px);
}

.login-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 28px;
}

.login-card input[type="text"],
.login-card input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 12px;
}
