/* styles.css - Design moderne sobre avec navigation épurée */

/* =====================================
   VARIABLES CSS
   ===================================== */
:root {
    /* Couleurs principales */
    --primary: #4F46E5;
    --primary-light: #6366F1;
    --primary-dark: #3730A3;
    --secondary: #EC4899;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* Couleurs IA */
    --ai-primary: #6366F1;
    --ai-light: #818CF8;
    --ai-dark: #4F46E5;
    --ai-accent: #A5B4FC;
    
    /* Couleurs de fond et texte */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #64748B;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Variables PageManager */
    --pm-bg: #ffffff;
    --pm-bg-secondary: #f8fafc;
    --pm-bg-tertiary: #f1f5f9;
    --pm-border: #e2e8f0;
    --pm-text: #0f172a;
    --pm-text-secondary: #475569;
    --pm-text-tertiary: #64748B;
    --pm-primary: #4F46E5;
    --pm-primary-dark: #3730A3;
    --pm-success: #10B981;
    --pm-danger: #EF4444;
    --pm-warning: #F59E0B;
    --pm-radius: 8px;
    --pm-radius-sm: 6px;
    --pm-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --pm-shadow-lg: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --pm-transition: all 0.15s ease;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Rayons de bordure */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.15s ease;
    --transition-fast: all 0.1s ease;
    
    /* Tailles de police */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

/* =====================================
   RESET ET BASE
   ===================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-secondary);
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gestion du scroll selon les pages */
body.page-dashboard {
    overflow-y: auto;
}

body.page-scanner {
    overflow-y: auto;
}

body.page-emails {
    overflow-y: auto;
}

body.page-tasks {
    overflow-y: auto;
}

body.page-ranger {
    overflow-y: auto;
}

body.page-settings {
    overflow-y: auto;
}

body.page-short-content {
    overflow-y: hidden !important;
}

body.login-mode {
    overflow: hidden !important;
}

/* Masquer les scrollbars sur certaines pages courtes */
body.page-short-content::-webkit-scrollbar {
    display: none !important;
}

body.page-short-content {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* =====================================
   COMPOSANTS DE BASE
   ===================================== */

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 20px;
    font-size: var(--text-base);
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary { 
    background: var(--primary); 
    color: white; 
    border-color: var(--primary);
}

.btn-primary:hover:not(:disabled) { 
    background: var(--primary-dark); 
    border-color: var(--primary-dark);
}

.btn-secondary { 
    background: var(--bg-primary); 
    color: var(--text-primary); 
    border-color: var(--border);
}

.btn-secondary:hover:not(:disabled) { 
    background: var(--bg-tertiary); 
}

.btn-danger { 
    background: var(--danger); 
    color: white; 
    border-color: var(--danger);
}

.btn-danger:hover:not(:disabled) { 
    background: #DC2626; 
}

.btn-ai {
    background: var(--ai-primary);
    color: white;
    border-color: var(--ai-primary);
}

.btn-ai:hover:not(:disabled) {
    background: var(--ai-dark);
    border-color: var(--ai-dark);
}

/* =====================================
   HEADER ET NAVIGATION SOBRES
   ===================================== */

/* Header Application */
.app-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    display: none;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary);
}

.logo i { 
    font-size: 1.5rem;
}

.ai-badge {
    background: var(--ai-primary);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: var(--spacing-xs);
}

.auth-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: var(--text-sm);
}

/* NAVIGATION SOBRE ET ÉPURÉE */
.app-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 999;
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-nav::-webkit-scrollbar {
    display: none !important;
}

/* Container de navigation */
#mainNav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0 20px;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

#mainNav::-webkit-scrollbar {
    display: none !important;
}

/* BOUTONS DE NAVIGATION SOBRES */
.nav-item {
    /* Style sobre et minimaliste */
    background: transparent;
    border: none;
    
    /* Dimensions épurées */
    min-width: 80px;
    max-width: 120px;
    height: 40px;
    padding: 8px 16px;
    
    /* Layout interne simple */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    
    /* Apparence sobre */
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

/* Icônes épurées */
.nav-item i {
    font-size: 16px !important;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    flex-shrink: 0;
}

/* Texte des boutons */
.nav-item span {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70px;
}

/* État de survol sobre */
.nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* ÉTAT ACTIF SOBRE - JUSTE UN FOND GRIS DISCRET */
.nav-item.active {
    background: var(--bg-tertiary);
    color: var(--primary);
    font-weight: 600;
}

/* Pas d'effet de survol supplémentaire sur l'actif */
.nav-item.active:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

/* Focus accessibilité sobre */
.nav-item:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Suppression de tous les effets spéciaux */
.nav-item::before {
    display: none;
}

/* =====================================
   CONTENU PRINCIPAL
   ===================================== */

.app-main {
    margin-top: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

/* Classes pour l'état actif de l'app */
body.app-active {
    background: var(--bg-secondary);
}

body.app-active #loginPage {
    display: none !important;
}

body.app-active .app-header {
    display: block !important;
}

body.app-active .app-nav {
    display: block !important;
}

body.app-active .app-main {
    margin-top: 120px !important;
    padding-top: 0 !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

body.app-active #pageContent {
    display: block !important;
    opacity: 1 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================
   DASHBOARD SOBRE
   ===================================== */

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 20px 20px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 32px;
}

.quick-guide {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}

.guide-intro {
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.guide-steps {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.guide-step {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    flex: 1;
    text-align: center;
    min-width: 120px;
    border: 1px solid var(--border);
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.action-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
}

.action-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.action-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

.action-description small {
    display: block;
    margin-top: 12px;
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    background: var(--bg-tertiary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color);
}

/* Couleurs par carte */
.scan-card {
    --color: var(--info);
}

.organize-card {
    --color: var(--success);
}

.tasks-card {
    --color: var(--warning);
}

.settings-card {
    --color: var(--primary);
}

.dashboard-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.stat {
    min-width: 120px;
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-weight: 500;
}

/* =====================================
   PAGEMANAGER STYLES
   ===================================== */

.page-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
}

.page-header-minimal {
    margin-bottom: 32px;
    margin-top: 0;
}

.page-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--pm-text);
    margin: 0 0 8px 0;
}

.page-subtitle {
    font-size: var(--text-base);
    color: var(--pm-text-secondary);
    margin: 0;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--pm-bg);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius);
    padding: 24px;
    text-align: center;
    transition: var(--pm-transition);
}

.stat-card:hover {
    box-shadow: var(--pm-shadow-lg);
}

.stat-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--pm-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--pm-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.scanner-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
}

.scanner-header {
    margin-bottom: 40px;
}

.scanner-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    color: var(--primary);
}

.scanner-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--pm-text);
    margin-bottom: 12px;
}

.scanner-desc {
    font-size: var(--text-base);
    color: var(--pm-text-secondary);
}

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

.control-group {
    text-align: left;
}

.control-group label {
    display: block;
    font-weight: 500;
    color: var(--pm-text);
    margin-bottom: 8px;
    font-size: var(--text-sm);
}

.select-minimal,
.input-minimal {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius-sm);
    font-size: var(--text-base);
    background: var(--pm-bg);
    transition: var(--pm-transition);
    min-height: 44px;
}

.select-minimal:focus,
.input-minimal:focus {
    outline: 2px solid var(--pm-primary);
    outline-offset: 2px;
    border-color: var(--pm-primary);
}

.btn-scan {
    background: var(--pm-primary);
    color: white;
    border: 1px solid var(--pm-primary);
    padding: 16px 32px;
    border-radius: var(--pm-radius);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: var(--pm-transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
}

.btn-scan:hover:not(:disabled) {
    background: var(--pm-primary-dark);
    border-color: var(--pm-primary-dark);
}

.btn-scan:focus {
    outline: 2px solid var(--pm-primary);
    outline-offset: 2px;
}

.btn-scan:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.25rem;
}

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

/* Emails page */
.emails-page {
    background: var(--pm-bg-secondary);
    border-radius: var(--pm-radius);
    padding: 0;
    margin: 0;
}

.emails-list {
    background: var(--pm-bg);
    min-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* États d'erreur et de chargement */
.empty-state {
    text-align: center;
    padding: 60px 24px;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-overlay.active { 
    display: flex; 
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =====================================
   ANIMATIONS MINIMALES
   ===================================== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =====================================
   RESPONSIVE SOBRE
   ===================================== */
@media (max-width: 1200px) {
    .page-minimal {
        padding: 0 24px 24px 24px;
    }
    
    .stats-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .action-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .app-nav {
        height: 60px;
        padding: 0 10px;
    }
    
    #mainNav {
        gap: 1px;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .nav-item {
        min-width: 70px;
        max-width: 100px;
        height: 36px;
        padding: 6px 12px;
        font-size: 13px;
        gap: 4px;
    }
    
    .nav-item i {
        font-size: 14px !important;
        width: 14px;
        height: 14px;
    }
    
    .nav-item span {
        font-size: 12px;
        max-width: 60px;
    }
    
    body.app-active .app-main {
        margin-top: 120px !important;
    }
    
    body.app-active #pageContent {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    
    .dashboard-container {
        padding: 48px 15px 15px 15px;
    }
    
    .page-minimal {
        padding: 0 20px 20px 20px;
    }
    
    .scanner-container {
        padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    }
    
    .dashboard-actions {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-card {
        min-height: 140px;
        padding: 20px;
    }
    
    .action-title {
        font-size: var(--text-base);
    }
    
    .action-description {
        font-size: var(--text-sm);
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .guide-steps {
        flex-direction: column;
        gap: 8px;
    }
    
    .guide-step {
        min-width: auto;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .scan-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .app-nav {
        height: 56px;
    }
    
    #mainNav {
        gap: 0;
        padding: 0 8px;
    }
    
    .nav-item {
        min-width: 60px;
        max-width: 80px;
        height: 32px;
        padding: 4px 8px;
        font-size: 12px;
        gap: 3px;
    }
    
    .nav-item i {
        font-size: 12px !important;
        width: 12px;
        height: 12px;
    }
    
    .nav-item span {
        font-size: 11px;
        max-width: 50px;
    }
    
    body.app-active .app-main {
        margin-top: 116px !important;
    }
    
    body.app-active #pageContent {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    
    .dashboard-container {
        padding: 48px 10px 10px 10px;
    }
    
    .page-minimal {
        padding: 0 15px 15px 15px;
    }
    
    .page-title {
        font-size: var(--text-xl);
    }
    
    .scanner-title {
        font-size: var(--text-xl);
    }
    
    .stat-value {
        font-size: var(--text-2xl);
    }
}

/* =====================================
   UTILITAIRES
   ===================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Accessibilité */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.nav-item:focus-visible,
.action-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Messages d'état */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success);
    font-size: var(--text-sm);
    font-weight: 500;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--danger);
    font-size: var(--text-sm);
    font-weight: 500;
}

.warning-message {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
    font-size: var(--text-sm);
    font-weight: 500;
}
