/**
 * Disseny Minimalista Clar (Light Mode Avançat)
 * Projecte: Gestió AFA IES Ramón Cid
 */

:root {
    --bg-main: #f8fafc;
    --bg-dots: rgba(99, 102, 241, 0.04);
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --color-accent: #4f46e5;
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 20px 25px -5px rgba(79, 70, 229, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    background-image: radial-gradient(var(--bg-dots) 2px, transparent 2px);
    background-size: 24px 24px;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.portal-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 40px 24px;
    box-sizing: border-box;
}

/* Distribució asimètrica de l'espai */
@media (min-width: 850px) {
    .main-layout {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 60px;
        align-items: center;
    }
}

.brand-section {
    text-align: left;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.brand-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.brand-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 16px 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
}

.brand-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cards-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interactive-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.interactive-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--card-shadow-hover);
    transform: translateX(8px);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.interactive-card:hover .icon-box {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.card-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.action-arrow {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.interactive-card:hover .action-arrow {
    background: var(--color-accent);
    border-color: transparent;
    color: #ffffff;
    transform: translateX(4px);
}

.system-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    width: 100%;
}

/* ==========================================================================
   FORMULARIS INTEGRATS (Neteja absoluta de Phps)
   ========================================================================== */

.form-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--card-shadow);
}

.form-panel h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.form-group input[type="text"], 
.form-group input[type="email"], 
.form-group input[type="tel"], 
.form-group select {
    padding: 11px 14px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    font-size: 0.92rem;
    background: #f8fafc;
    color: var(--text-primary);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group select:focus {
    background: #ffffff;
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.bloc-fill {
    background: #f8fafc;
    border: 1px solid var(--card-border);
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 12px;
}

.btn-submit {
    background: var(--gradient-accent);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-submit:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.nota-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Contenidor de càrrega de fitxers (Drag & Drop box de pagaments) */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--card-border);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--color-accent);
    background: #eff6ff;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Missatges de Feedback del Servidor (Alertes) */
.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-exit {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}/* ==========================================================================
   PORTAL DE FAMÍLIES — COMPONENTS ESPECÍFICS (CONSULTA FITXA)
   ========================================================================== */

/* Badges d'Estat de la Tramitació */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 5px;
}
.Pendent-pagament {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}
.Pendent-validacio {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.Validat {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Panells de visualització de dades RGPD */
.fitxa-dades {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: var(--card-shadow);
}
.fitxa-dades h3 {
    margin-top: 0;
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px dashed var(--card-border);
    padding-bottom: 10px;
    margin-bottom: 14px;
}
.fitxa-dades p {
    margin: 10px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Alumnes i Fills Associats */
.llista-alumnes {
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.alumne-item {
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: 10px;
}
.alumne-curs-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: #e0e7ff;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Botó d'Eixir / Tancar seguretat */
.btn-sortir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 12px 24px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-sortir:hover {
    background: #ffeeee;
    transform: translateY(-1px);
}

/* Info de capçalera de repte en Fase 2 */
.info-repte-capsala {
    background: var(--bg-main);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}/* ==========================================================================
   PANTALLA DE CONFIRMACIÓ DE REGISTRE (PROCESSAR INSCRIPCIÓ)
   ========================================================================== */

/* Caixa destacada per al codi de referència únic de la família */
.codi-box {
    background: #e0e7ff;
    border: 2px dashed var(--color-accent);
    color: var(--color-accent);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    padding: 16px;
    margin: 24px 0;
    border-radius: 12px;
    letter-spacing: 0.05em;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Llista de recomanacions o passos a seguir */
.llista-passos {
    padding-left: 20px;
    margin: 16px 0;
}

.llista-passos li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-primary);
}

.llista-passos li a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.llista-passos li a:hover {
    text-decoration: underline;
}vim estils.css/* Caixa ultra-destacada per a l'IBAN de l'AFA */
.iban-box {
    background: #f0fdf4; /* Fons verd clar de seguretat */
    border: 2px solid #22c55e; /* Vora verda intensa per donar focus */
    color: #14532d; /* Text verd fosc d'alta llegibilitat */
    font-family: 'Courier New', Courier, monospace; /* Forcem tipografia tipus bloc bancari */
    font-size: 1.3rem; /* Mida més gran i imponent */
    font-weight: 800; /* Negreta extra */
    text-align: center;
    padding: 16px;
    margin: 20px 0;
    border-radius: 12px;
    letter-spacing: 0.06em; /* Més espai entre caràcters per evitar confusions al llegir */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08); /* Ombra externa suau verda */
}

/* Etiqueta interna de la caixa */
.iban-box span {
    font-family: system-ui, sans-serif;
    font-size: 0.8rem;
    background: #22c55e;
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
}/* Contenidor centralitzat per a accions de retorn */
.marcador-retorn {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Botó de retorn global al Menú Principal */
.btn-tornar-principal {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.2s ease;
}

.btn-tornar-principal:hover {
    background: var(--bg-main);
    color: var(--text-primary);
    transform: translateX(-2px);
}/* ==========================================================================
   📋 COMPONENT: WIDGET COPIAR AL PORTAPAPERS
   ========================================================================== */

/* Contenidor del bloc de dades a copiar */
.copiar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-main);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 10px 14px;
    margin: 8px 0 20px 0;
}

/* Destacat especial per a l'IBAN */
.destacat-iban {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 1px;
}

/* Destacat per al codi de referència */
.destacat-codi {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0284c7;
}

/* Botó del widget de copiar */
.btn-copiar {
    background-color: var(--card-border);
    color: var(--text-main);
    border: none;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-copiar:hover {
    background-color: #cbd5e1;
}

/* Efecte visual quan s'ha copiat correctament */
.btn-copiar.copiat {
    background-color: #22c55e;
    color: #ffffff;
}/* ==========================================================================
   🔗 ENLLAÇOS TRANSFORMATEDS EN BOTONS (CTA)
   ========================================================================== */

/* Botó d'acció principal (fons sòlid i cridaner) */
.btn-enllaç-principal {
    display: inline-block;
    background-color: var(--color-accent, #b45309);
    color: #ffffff !important; /* Forcem text blanc independent dels enllaços genèrics */
    text-decoration: none;
    padding: 10px 18px;
    font-weight: 700;
    border-radius: 6px;
    margin: 8px 0;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-enllaç-principal:hover {
    background-color: #92400e; /* Un to més fosc per al moviment del ratolí */
}

.btn-enllaç-principal:active {
    transform: scale(0.98); /* Xicotet efecte de premsat al mòbil */
}

/* Botó d'acció secundari o enllaç destacat (estil vora/outline) */
.enllaç-destacat-inline {
    display: inline-block;
    color: #0284c7 !important;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #0284c7;
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.enllaç-destacat-inline:hover {
    color: #0369a1 !important;
    border-color: #0369a1;
}/* ==========================================================================
   ⚙️ COMPONENT: MENU PRINCIPAL D'ADMINISTRACIÓ (DASHBOARD)
   ========================================================================== */

.admin-dashboard-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.admin-dashboard-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* Quadrícula per a les targetes d'opcions */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Targeta individual del menú */
.admin-card {
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.admin-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.admin-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
}/* Contenidor del selector d'any d'administració */
.selector-exercici-container {
    margin-top: 15px;
    background-color: var(--bg-main, #f8fafc);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--card-border, #e2e8f0);
}

.selector-exercici-container label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 8px;
    color: var(--text-secondary);
}

.selector-exercici-container select {
    padding: 4px 8px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--card-border);
    color: var(--text-main);
    cursor: pointer;
}

.card-deshabilitada {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none; /* Evita que es puga fer clic o hover actiu */
}


/* ==========================================================================
   Control de Campanya i Capçalera (AFA Josep)
   ========================================================================== */

/* Targetes o enllaços deshabilitats quan la campanya està tancada */
.card-deshabilitada,
.enllaat-deshabilitat {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; /* Evita clics i efectes hover */
}

/* Estils base per a la capçalera unificada */
header.site-header {
    background-color: #ffffff;
    padding: 20px;
    border-bottom: 2px solid #e9ecef;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

/* Contenidors */
.filtres-container {
    margin-top: 25px;
}

/* Centrem el contingut d'aquest bloc */
.nav-admin-container {
    margin-top: 20px;
    text-align: center;
}

/* Estil base dels botons d'administració (DRY) */
.btn {
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* Botó verd de descàrrega */
.btn-csv {
    background: #28a745;
    color: white;
}

/* Botó gris de tornada */
.btn-tornar {
    background: #6c757d;
    color: white;
}

.admin-card-action .badge {
    background-color: #ef4444;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 5px;
    display: inline-block;
}


/* ==========================================================================
   MÒDUL DE CONCILIACIÓ BANCÀRIA (AFA)
   ========================================================================== */

.admin-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Alertes exclusives del panell de banca */
.alerta-banc {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
}
.alerta-banc-exit {
    background-color: #dcfce7;
    color: #15803d;
    border-left: 5px solid #16a34a;
}
.alerta-banc-error {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 5px solid #dc2626;
}

/* Caixa del formulari de càrrega */
.formulari-caixa-banc {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
}
.grup-formulari-banc label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.grup-formulari-banc input[type="file"] {
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
}
.btn-importar-banc {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.btn-importar-banc:hover {
    background-color: #1d4ed8;
}

/* Estructura de la taula d'auditoria */
.resum-llistat-banc {
    margin-top: 30px;
}
.taula-reconciliacio {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.taula-reconciliacio th {
    background-color: #f3f4f6;
    border-bottom: 2px solid #e5e7eb;
    text-align: left;
    padding: 12px;
    color: #374151;
}
.taula-reconciliacio td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

/* Columnes específiques */
.taula-reconciliacio .col-data {
    font-weight: bold;
    white-space: nowrap;
}
.taula-reconciliacio .col-descripcio {
    font-size: 0.9rem;
}
.taula-reconciliacio .col-codi {
    font-family: monospace;
    font-weight: bold;
    color: #1e40af;
}
.taula-reconciliacio .col-estat {
    font-size: 0.85rem;
}

/* Estats semàntics de les files (Colors de control visius) */
.taula-reconciliacio tr.estat-ok {
    background-color: #f0fdf4;
    color: #166534;
}
.taula-reconciliacio tr.estat-sense-codi {
    background-color: #fef2f2;
    color: #991b1b;
}
.taula-reconciliacio tr.estat-avis {
    background-color: #fef9c3;
    color: #854d0e;
}
.taula-reconciliacio tr.estat-error-notrobat {
    background-color: #ffedd5;
    color: #9a3412;
}

/* Botó inferior de retorn */
.btn-tornar-banc {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #4b5563;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s;
}
.btn-tornar-banc:hover {
    background-color: #374151;
}

/* Afegeix això al final del teu portal.css */

input:disabled, 
select:disabled {
    background-color: #f9f9f9; /* Un fons gris molt suau */
    border: 1px solid #ddd;    /* Una vora suau */
    cursor: not-allowed;       /* Canvia el cursor a "prohibit" */
    color: #555;               /* Text una mica més fosc per a llegibilitat */
    opacity: 1;                /* Evita que el navegador els faci massa transparents */
}

/* Perquè el text no quedi gaire gris */
select:disabled {
    appearance: none; /* Elimina la fletxa del select en alguns navegadors per a un look més net */
}
/* Estil per al contenidor que agrupa el Codi i l'Estat */
.info-capcalera-destacada {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Estil específic per al badge d'estat (per fer-lo ressaltar) */
.estat-badge {
    padding: 4px 12px;
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
}
