/* =====================================================================
   TELUS CRC MAROC - Internal Management Platform
   Design System — Couleurs TELUS
   ===================================================================== */

:root {
    --telus-purple: #4B286D;
    --telus-purple-dark: #2A1A3E;
    --telus-purple-light: #6B3D8E;
    --telus-green: #66CC00;
    --telus-green-dark: #4FA300;
    --telus-green-light: #85E020;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    --sidebar-width: 260px;
    --header-height: 64px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(75,40,109,0.12);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--telus-purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--telus-green-dark); }

/* =========== LOGIN PAGE =========== */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--telus-purple) 0%, var(--telus-purple-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(102,204,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.login-page::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(102,204,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.login-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    width: 100%; max-width: 440px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}
.login-logo img { max-width: 180px; margin-bottom: 12px; }
.login-logo h1 {
    font-size: 20px; font-weight: 700;
    color: var(--telus-purple); letter-spacing: -0.5px;
}
.login-logo p { color: var(--gray-500); font-size: 13px; margin-top: 4px; }

/* =========== LAYOUT =========== */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--telus-purple) 0%, var(--telus-purple-dark) 100%);
    color: white;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.sidebar-header {
    padding: 20px 24px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-height: var(--header-height);
}
.sidebar-header img { height: 36px; background: white; padding: 4px 8px; border-radius: 6px; }
.sidebar-header .brand { font-size: 13px; font-weight: 600; line-height: 1.2; }
.sidebar-header .brand small { display: block; opacity: 0.7; font-size: 10px; font-weight: 400; margin-top: 2px; }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 16px 12px; }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.nav-section-title {
    text-transform: uppercase; font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,0.5); padding: 16px 12px 8px; letter-spacing: 1px;
}

.nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    font-size: 13.5px; font-weight: 500;
    margin-bottom: 2px;
    transition: var(--transition);
    position: relative;
}
.nav-item:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-item.active {
    background: linear-gradient(90deg, var(--telus-green) 0%, var(--telus-green-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102,204,0,0.3);
}
.nav-item .icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.nav-item .badge-count {
    margin-left: auto; background: var(--telus-green); color: white;
    font-size: 10px; padding: 2px 7px; border-radius: 10px; font-weight: 700;
}
.nav-item.active .badge-count { background: rgba(255,255,255,0.25); }

.sidebar-footer {
    padding: 16px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 12px;
}
.sidebar-footer .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--telus-green), var(--telus-green-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 14px;
}
.sidebar-footer .info { flex: 1; overflow: hidden; }
.sidebar-footer .info .name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-footer .info .role { font-size: 11px; opacity: 0.7; }
.sidebar-footer a { color: rgba(255,255,255,0.7); padding: 6px; border-radius: 6px; }
.sidebar-footer a:hover { background: rgba(255,255,255,0.1); color: white; }

/* =========== MAIN CONTENT =========== */
.main {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex; flex-direction: column;
}

.topbar {
    background: white;
    height: var(--header-height);
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0; z-index: 50;
    border-bottom: 1px solid var(--gray-100);
}

.topbar h1 { font-size: 20px; font-weight: 700; color: var(--gray-900); }
.topbar-actions { display: flex; align-items: center; gap: 12px; }

.notif-btn {
    position: relative; width: 40px; height: 40px;
    border-radius: 50%; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; transition: var(--transition);
}
.notif-btn:hover { background: var(--gray-200); }
.notif-btn .dot {
    position: absolute; top: 8px; right: 8px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--telus-green); border: 2px solid white;
}

.content { flex: 1; padding: 32px; }

/* =========== CARDS =========== */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); }
.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex; justify-content: space-between; align-items: center;
}
.card-title { font-size: 16px; font-weight: 600; color: var(--gray-900); }
.card-body { padding: 24px; }

/* =========== KPI CARDS =========== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.kpi-card {
    background: white;
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.kpi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.kpi-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--telus-purple), var(--telus-green));
}
.kpi-card .kpi-label {
    font-size: 12px; color: var(--gray-500); text-transform: uppercase;
    font-weight: 600; letter-spacing: 0.5px;
}
.kpi-card .kpi-value {
    font-size: 28px; font-weight: 700; color: var(--gray-900);
    margin: 8px 0 4px; letter-spacing: -0.5px;
}
.kpi-card .kpi-trend { font-size: 12px; color: var(--gray-500); }
.kpi-card .kpi-trend.up { color: var(--success); }
.kpi-card .kpi-trend.down { color: var(--danger); }
.kpi-card .kpi-icon {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--telus-purple-light), var(--telus-purple));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.kpi-card.green .kpi-icon { background: linear-gradient(135deg, var(--telus-green-light), var(--telus-green-dark)); }
.kpi-card.orange .kpi-icon { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.kpi-card.red .kpi-icon { background: linear-gradient(135deg, #F87171, #EF4444); }

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    font-size: 13.5px; font-weight: 600;
    border-radius: var(--radius-sm);
    border: none; cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--telus-purple), var(--telus-purple-dark));
    color: white;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(75,40,109,0.35); color: white; }
.btn-success {
    background: linear-gradient(135deg, var(--telus-green), var(--telus-green-dark));
    color: white;
}
.btn-success:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(102,204,0,0.35); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #DC2626; color: white; }
.btn-warning { background: var(--warning); color: white; }
.btn-secondary { background: var(--gray-100); color: var(--gray-700); }
.btn-secondary:hover { background: var(--gray-200); color: var(--gray-800); }
.btn-outline {
    background: transparent; color: var(--telus-purple); border: 1.5px solid var(--telus-purple);
}
.btn-outline:hover { background: var(--telus-purple); color: white; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* =========== FORMS =========== */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block; margin-bottom: 6px;
    font-size: 13px; font-weight: 600; color: var(--gray-700);
}
.form-label .required { color: var(--danger); }
.form-control {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--gray-800);
    background: white;
    transition: var(--transition);
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: var(--telus-purple);
    box-shadow: 0 0 0 3px rgba(75,40,109,0.1);
}
textarea.form-control { min-height: 90px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--telus-purple); }

/* =========== TABLES =========== */
.table-container { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.table-toolbar {
    padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
    gap: 12px; flex-wrap: wrap; border-bottom: 1px solid var(--gray-100);
}
.table-toolbar .search-box {
    flex: 1; max-width: 320px; position: relative;
}
.table-toolbar .search-box input {
    width: 100%; padding: 9px 14px 9px 38px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 13.5px;
    transition: var(--transition);
}
.table-toolbar .search-box input:focus { outline: none; border-color: var(--telus-purple); }
.table-toolbar .search-box::before {
    content: '🔍'; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    font-size: 14px; opacity: 0.5;
}
.table {
    width: 100%; border-collapse: collapse;
}
.table thead th {
    background: var(--gray-50);
    padding: 12px 20px;
    text-align: left;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; color: var(--gray-600);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-200);
}
.table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13.5px;
    color: var(--gray-700);
}
.table tbody tr:hover { background: var(--gray-50); }
.table tbody tr:last-child td { border-bottom: none; }
.table .actions { display: flex; gap: 4px; }
.table .btn-icon {
    width: 32px; height: 32px; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px; border: none; cursor: pointer;
    background: var(--gray-100); color: var(--gray-600);
    transition: var(--transition);
    font-size: 14px;
}
.table .btn-icon:hover { background: var(--telus-purple); color: white; }
.table .btn-icon.danger:hover { background: var(--danger); }
.table .btn-icon.success:hover { background: var(--telus-green); }

/* =========== BADGES =========== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.badge-success { background: rgba(16,185,129,0.12); color: #059669; }
.badge-warning { background: rgba(245,158,11,0.12); color: #D97706; }
.badge-danger { background: rgba(239,68,68,0.12); color: #DC2626; }
.badge-info { background: rgba(59,130,246,0.12); color: #2563EB; }
.badge-secondary { background: var(--gray-100); color: var(--gray-600); }
.badge-primary { background: rgba(75,40,109,0.12); color: var(--telus-purple); }

/* =========== ALERTS =========== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 13.5px;
    display: flex; align-items: center; gap: 10px;
    border-left: 4px solid;
}
.alert-success { background: rgba(16,185,129,0.08); color: #059669; border-color: var(--success); }
.alert-danger { background: rgba(239,68,68,0.08); color: #DC2626; border-color: var(--danger); }
.alert-warning { background: rgba(245,158,11,0.08); color: #D97706; border-color: var(--warning); }
.alert-info { background: rgba(59,130,246,0.08); color: #2563EB; border-color: var(--info); }

/* =========== MODAL =========== */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(17,24,39,0.6); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
    z-index: 200; padding: 20px;
    animation: fadeIn 0.2s;
}
.modal-backdrop.show { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
    background: white; border-radius: var(--radius-lg);
    width: 100%; max-width: 600px; max-height: 90vh;
    overflow: hidden; display: flex; flex-direction: column;
    animation: slideUp 0.3s;
    box-shadow: var(--shadow-xl);
}
.modal.large { max-width: 900px; }
.modal.xlarge { max-width: 1200px; }
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.modal-close {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--gray-100); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gray-600);
    transition: var(--transition);
}
.modal-close:hover { background: var(--danger); color: white; }
.modal-body { padding: 24px; overflow-y: auto; flex: 1; }
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
    display: flex; justify-content: flex-end; gap: 10px;
    background: var(--gray-50);
}

/* =========== LIGNES DOCUMENT (devis/facture) =========== */
.lignes-table {
    width: 100%; border-collapse: collapse;
    margin-top: 12px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); overflow: hidden;
}
.lignes-table th {
    background: var(--gray-50); padding: 10px 12px;
    text-align: left; font-size: 12px; font-weight: 700;
    color: var(--gray-600); text-transform: uppercase;
}
.lignes-table td { padding: 8px; border-top: 1px solid var(--gray-200); }
.lignes-table input, .lignes-table select {
    width: 100%; padding: 6px 8px;
    border: 1px solid var(--gray-200); border-radius: 4px;
    font-size: 13px; background: white;
}
.lignes-table .col-designation { width: 30%; }
.lignes-table .col-qte, .lignes-table .col-tva { width: 90px; }
.lignes-table .col-prix, .lignes-table .col-total { width: 130px; }
.lignes-table .col-actions { width: 40px; text-align: center; }
.ligne-total { font-weight: 600; color: var(--telus-purple); text-align: right; }

.totaux-box {
    margin-top: 16px; padding: 20px;
    background: linear-gradient(135deg, rgba(75,40,109,0.03), rgba(102,204,0,0.03));
    border-radius: var(--radius);
    display: flex; justify-content: flex-end;
}
.totaux-box table { width: 320px; }
.totaux-box td { padding: 6px 0; font-size: 14px; }
.totaux-box tr.total td {
    padding-top: 12px; border-top: 2px solid var(--telus-purple);
    font-size: 18px; font-weight: 700; color: var(--telus-purple);
}

/* =========== WORKFLOW STEPS =========== */
.workflow-steps {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px; margin-bottom: 24px;
    background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.workflow-step {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    position: relative;
}
.workflow-step:not(:last-child)::after {
    content: ''; position: absolute; top: 20px; left: 50%; width: 100%; height: 2px;
    background: var(--gray-200); z-index: 0;
}
.workflow-step.done::after { background: var(--telus-green); }
.workflow-step .step-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gray-200); color: var(--gray-500);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; z-index: 1; position: relative;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--gray-200);
}
.workflow-step.done .step-circle {
    background: var(--telus-green); color: white; box-shadow: 0 0 0 2px var(--telus-green);
}
.workflow-step.current .step-circle {
    background: var(--telus-purple); color: white; box-shadow: 0 0 0 2px var(--telus-purple);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 2px var(--telus-purple), 0 0 0 6px rgba(75,40,109,0.15); }
    50% { box-shadow: 0 0 0 2px var(--telus-purple), 0 0 0 12px rgba(75,40,109,0); }
}
.workflow-step .step-label {
    margin-top: 10px; font-size: 12px; font-weight: 600;
    color: var(--gray-600); text-align: center;
}
.workflow-step .step-info { font-size: 10.5px; color: var(--gray-400); margin-top: 2px; }

/* =========== LOADER =========== */
.spinner {
    width: 22px; height: 22px;
    border: 3px solid rgba(75,40,109,0.15);
    border-top-color: var(--telus-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(255,255,255,0.7);
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(2px);
}
.loading-overlay.show { display: flex; }

/* =========== EMPTY STATE =========== */
.empty-state {
    text-align: center; padding: 60px 20px;
    color: var(--gray-500);
}
.empty-state .icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; }
.empty-state h4 { font-size: 16px; color: var(--gray-700); margin-bottom: 6px; }
.empty-state p { font-size: 13px; }

/* =========== PAGE HEADER =========== */
.page-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.page-header h2 {
    font-size: 22px; font-weight: 700; color: var(--gray-900);
    display: flex; align-items: center; gap: 10px;
}
.page-header .breadcrumb {
    font-size: 12px; color: var(--gray-500); margin-top: 4px;
}

/* =========== TABS =========== */
.tabs { display: flex; border-bottom: 2px solid var(--gray-100); margin-bottom: 20px; }
.tab {
    padding: 12px 20px; cursor: pointer; font-weight: 600; font-size: 13.5px;
    color: var(--gray-500); border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: var(--transition);
}
.tab:hover { color: var(--telus-purple); }
.tab.active { color: var(--telus-purple); border-color: var(--telus-purple); }

/* =========== RESPONSIVE =========== */
@media (max-width: 992px) {
    .sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .sidebar.show { transform: translateX(0); }
    .main { margin-left: 0; }
    .form-row, .form-row-3, .form-row-4 { grid-template-columns: 1fr; }
    .content { padding: 20px; }
    .topbar { padding: 0 16px; }
}

/* =========== UTILITIES =========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-500); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-primary { color: var(--telus-purple); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
