:root {

    /* SUPERFICIES */

    --bg-primary: #0b0f14;
    --bg-secondary: #121821;

    --card-bg: #171f2b;
    --surface-raised: #1e293b;

    /* MARCA */

    --primary: #00F7C7;
    --primary-hover: #14f1d9;
    --primary-text: #00F7C7;
    --primary-ink: #06251f;

    /* TEXTO */

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* BORDES */

    --border-color: rgba(255,255,255,0.06);
    --border-color-strong: rgba(255,255,255,0.12);

    /* ESTADO */

    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* RADIOS (jerarquía: contenedores < controles < píldoras) */

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* SOMBRAS */

    --shadow-card: 0 1px 2px rgba(0,0,0,.3), 0 12px 28px rgba(0,0,0,.25);

    /* TIPOGRAFÍA */

    --font-display: 'Space Grotesk', Inter, system-ui, sans-serif;
    --font-body: Inter, system-ui, sans-serif;

    color-scheme: dark;
}

[data-theme="light"] {

    --bg-primary: #f4f6f5;
    --bg-secondary: #ffffff;

    --card-bg: #ffffff;
    --surface-raised: #eef2f1;

    --primary: #00F7C7;
    --primary-hover: #00ddb2;
    --primary-text: #049d80;
    --primary-ink: #06251f;

    --text-primary: #0b1220;
    --text-secondary: #55606b;
    --text-muted: #8792a0;

    --border-color: rgba(15,23,42,0.08);
    --border-color-strong: rgba(15,23,42,0.14);

    --success: #16a34a;
    --danger: #dc2626;
    --warning: #b45309;

    --shadow-card: 0 1px 2px rgba(15,23,42,.05), 0 12px 28px rgba(15,23,42,.06);

    color-scheme: light;
}

* {

    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

body {

    background: var(--bg-primary);
    color: var(--text-primary);

    font-family: var(--font-body);
}

h1, h2, h3, h4, h5,
.fw-bold {

    font-family: var(--font-display);

    letter-spacing: -.01em;
}

/* MOTIVO DE MARCA: retícula de puntos del logo, usada como textura de fondo sutil */

.rda-dot-motif {

    background-image: radial-gradient(
        var(--primary) 1.6px,
        transparent 1.6px
    );

    background-size: 16px 16px;

    opacity: .07;
}

/* SIDEBAR */

.sidebar {

    width: 260px;
    height: 100vh;

    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);

    position: fixed;
    left: 0;
    top: 0;

    padding: 24px 18px;

    display: flex;

    flex-direction: column;

    overflow-y: auto;

    scrollbar-width: thin;

    scrollbar-color: rgba(0,247,199,.35) transparent;

    z-index: 1000;

    transition: transform 0.3s ease, background-color .2s ease;
}

.sidebar::-webkit-scrollbar {

    width: 6px;
}

.sidebar::-webkit-scrollbar-track {

    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {

    background: rgba(0,247,199,.3);

    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {

    background: rgba(0,247,199,.5);
}

.sidebar-logo {

    position: relative;

    font-size: 28px;
    font-weight: 800;

    margin-bottom: 30px;

    padding: 6px 6px 18px;

    color: var(--text-primary);

    overflow: hidden;
}

.sidebar-logo::after {

    content: '';

    position: absolute;

    inset: -10px -10px auto auto;

    width: 120px;
    height: 70px;

    background-image: radial-gradient(
        var(--primary) 1.4px,
        transparent 1.4px
    );

    background-size: 13px 13px;

    opacity: .08;

    pointer-events: none;

    -webkit-mask-image: linear-gradient(to bottom left, black, transparent 70%);
    mask-image: linear-gradient(to bottom left, black, transparent 70%);
}

.sidebar-logo span {

    color: var(--primary);
}

.sidebar-logo-img-light {

    display: none;
}

[data-theme="light"] .sidebar-logo-img-dark {

    display: none;
}

[data-theme="light"] .sidebar-logo-img-light {

    display: inline-block;
}

.sidebar-menu {

    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;

    min-height: 0;

    overflow-y: auto;
}

.sidebar-section-label {

    color: var(--text-muted);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .07em;

    padding: 16px 14px 6px;
}

.sidebar-section-label:first-child {

    padding-top: 0;
}

.sidebar-menu a,
.sidebar-link {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-secondary);

    text-decoration: none;

    padding: 10px 14px;

    border-radius: var(--radius-md);

    border-left: 3px solid transparent;

    font-size: 14px;

    font-weight: 600;

    transition: .15s;
}

.sidebar-menu a i,
.sidebar-link i {

    font-size: 16px;

    width: 18px;

    text-align: center;

    flex-shrink: 0;
}

.sidebar-menu a:hover,
.sidebar-link:hover {

    background: var(--surface-raised);

    color: var(--text-primary);
}

.sidebar-menu a.active,
.sidebar-link.active {

    background: rgba(0,247,199,.12);

    border-left-color: var(--primary);

    color: var(--primary-text);

    font-weight: 700;
}

/* CUENTA / CERRAR SESIÓN */

.sidebar-bottom {

    margin-top: 14px;

    padding-top: 14px;

    border-top: 1px solid var(--border-color);

    display: flex;

    align-items: center;

    gap: 8px;
}

.sidebar-account {

    display: flex;

    align-items: center;

    gap: 10px;

    flex: 1;

    min-width: 0;

    padding: 8px;

    border-radius: var(--radius-md);

    text-decoration: none;

    transition: .15s;
}

.sidebar-account:hover {

    background: var(--surface-raised);
}

.sidebar-account.active {

    background: rgba(0,247,199,.12);
}

.sidebar-account-avatar {

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: var(--primary-ink);

    font-weight: 800;

    font-size: 14px;
}

.sidebar-account-info {

    min-width: 0;
}

.sidebar-account-name {

    color: var(--text-primary);

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.sidebar-account-role {

    color: var(--text-muted);

    font-size: 11.5px;
}

.sidebar-logout-btn {

    flex-shrink: 0;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: var(--radius-md);

    color: var(--text-muted);

    text-decoration: none;

    font-size: 16px;

    transition: .15s;
}

.sidebar-logout-btn:hover {

    background: rgba(239,68,68,.1);

    color: var(--danger);
}

/* THEME TOGGLE (FAB, ICONO, ARRIBA A LA DERECHA) */

.theme-fab {

    position: fixed;

    top: 28px;
    right: 36px;

    z-index: 1002;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--card-bg);

    border: 1px solid var(--border-color-strong);

    border-radius: 50%;

    color: var(--text-primary);

    font-size: 18px;

    cursor: pointer;

    box-shadow: var(--shadow-card);

    transition: .2s;
}

.theme-fab:hover {

    border-color: var(--primary);

    color: var(--primary-text);

    transform: translateY(-1px);
}

.theme-fab-icon-dark {

    display: none;
}

[data-theme="light"] .theme-fab-icon-light {

    display: none;
}

[data-theme="light"] .theme-fab-icon-dark {

    display: inline-block;
}

@media (max-width: 640px) {

    .theme-fab {

        top: 16px;
        right: 16px;

        width: 40px;
        height: 40px;

        font-size: 16px;
    }
}

/* MAIN CONTENT */

.main-content {

    margin-left: 260px;

    padding: 30px;
}

/* TOPBAR */

.topbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 30px;

    padding-right: 64px;
}

@media (max-width: 640px) {

    .topbar {

        padding-right: 0;
    }
}

/* CARDS */

.dashboard-card {

    background: var(--card-bg);

    border-radius: var(--radius-lg);

    padding: 24px;

    border: 1px solid var(--border-color);
}

.stat-card {

    background: var(--card-bg);

    border-radius: var(--radius-lg);

    padding: 24px;

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-card);

    position: relative;

    overflow: hidden;
}

.stat-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: var(--stat-accent, var(--primary));
}

.stat-accent-teal {

    --stat-accent: var(--primary);

    --stat-accent-soft: rgba(0,247,199,.14);
}

.stat-accent-blue {

    --stat-accent: #60A5FA;

    --stat-accent-soft: rgba(96,165,250,.14);
}

.stat-accent-purple {

    --stat-accent: #A78BFA;

    --stat-accent-soft: rgba(167,139,250,.14);
}

.stat-accent-orange {

    --stat-accent: #FB923C;

    --stat-accent-soft: rgba(251,146,60,.14);
}

.stat-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--stat-accent-soft, rgba(0,247,199,.14));

    color: var(--stat-accent, var(--primary));

    font-size: 18px;

    margin-bottom: 16px;
}

.stat-label {

    color: var(--text-secondary);

    font-size: 14px;
}

.stat-number {

    font-family: var(--font-display);

    font-size: 36px;

    font-weight: 700;

    margin-top: 10px;

    color: var(--text-primary);
}

/* BUTTONS */

.btn-rda {

    background: var(--primary);

    border: none;

    color: var(--primary-ink);

    border-radius: var(--radius-md);

    padding: 12px 18px;

    font-weight: 700;
}

.btn-rda:hover {

    background: var(--primary-hover);

    color: var(--primary-ink);
}

/* MOBILE */

@media (max-width: 991px) {

    .sidebar {

        width: 100%;

        min-height: auto;

        position: relative;
    }

    .main-content {

        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .sidebar {

        transform: translateX(-100%);
        z-index: 9999;
    }

    .sidebar.active {

        transform: translateX(0);
    }

    .main-content {

        margin-left: 0;
    }

    .overlay {

        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background: rgba(0,0,0,0.5);

        display: none;

        z-index: 9998;
    }

    .overlay.active {

        display: block;
    }
}

/* SIDEBAR BASE */
/* MAIN CONTENT */
.main-content {

    margin-left: 260px;
    padding: 30px;
}

/* OVERLAY */
.overlay {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);

    display: none;

    z-index: 999;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .sidebar {

        transform: translateX(-100%);
    }

    .sidebar.active {

        transform: translateX(0);
    }

    .main-content {

        margin-left: 0;
    }

    .overlay.active {

        display: block;
    }
}

.player-item {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: 18px;

    padding: 16px;
}

/* PLAYER PROFILE */

.player-profile-header {

    background: var(--card-bg);

    border-radius: 30px;

    padding: 40px;

    margin-bottom: 24px;

    border: 1px solid var(--border-color-strong);
}

.profile-avatar {

    width: 110px;
    height: 110px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: var(--font-display);

    font-size: 42px;

    font-weight: 700;

    color: var(--primary-ink);
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(160px, 1fr));

    gap: 20px;
}

.stat-box {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: 20px;

    padding: 24px;

    text-align: center;
}

.stats-grid .stat-number {

    font-family: var(--font-display);

    font-size: 36px;

    font-weight: 700;

    color: var(--text-primary);
}

.stat-number-success {

    color: var(--success) !important;
}

.stat-number-danger {

    color: var(--danger) !important;
}

.stat-number-warning {

    color: var(--warning) !important;
}

.stat-number-primary {

    color: var(--primary-text) !important;
}

.stats-grid .stat-label {

    color: var(--text-secondary);

    margin-top: 8px;
}

.info-item {

    display: flex;

    justify-content: space-between;

    margin-bottom: 18px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;
}

.info-item span {

    color: var(--text-secondary);
}

.info-item strong {

    color: var(--text-primary);

    text-align: right;
}

/* PÍLDORAS DE ESTADO (activo/pagado/pendiente...) */

.status-pill {

    display: inline-flex;

    align-items: center;

    padding: 5px 12px;

    border-radius: var(--radius-pill);

    font-size: 12px;

    font-weight: 700;
}

.status-pill-success {

    background: rgba(34,197,94,.14);

    color: var(--success);
}

.status-pill-danger {

    background: rgba(239,68,68,.14);

    color: var(--danger);
}

.status-pill-warning {

    background: rgba(245,158,11,.14);

    color: var(--warning);
}

/* CLASES ACTIVAS (perfil) */

.player-class-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border-color);
}

.player-class-row:last-child {

    padding-bottom: 0;

    border-bottom: none;
}

.player-class-row-title {

    color: var(--text-primary);

    font-weight: 700;

    font-size: 14.5px;

    text-decoration: none;

    display: block;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.player-class-row-title:hover {

    color: var(--primary-text);
}

.player-class-row-meta {

    color: var(--text-secondary);

    font-size: 12.5px;

    margin-top: 2px;
}

/* FILAS DE PAGO */

.payment-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border-color);
}

.payment-row:last-child {

    padding-bottom: 0;

    border-bottom: none;
}

.payment-row-concept {

    color: var(--text-primary);

    font-weight: 600;

    font-size: 14px;
}

.payment-row-amount {

    color: var(--text-secondary);

    font-size: 13px;

    margin-top: 2px;
}


/* PROFILE PREMIUM */

.profile-wrapper {

    max-width: 1200px;
}

.profile-header-card {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0f172a
        );

    border-radius: 30px;

    padding: 40px;

    display: flex;

    align-items: center;

    gap: 30px;

    border:
        1px solid rgba(255,255,255,0.06);
}

.profile-avatar-large {

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #06b6d4
        );

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 46px;

    font-weight: 800;

    color: white;

    flex-shrink: 0;
}

.form-label-custom {

    color: var(--text-secondary);

    margin-bottom: 10px;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.form-dark {

    background: var(--bg-secondary) !important;

    border: 1px solid var(--border-color-strong) !important;

    color: var(--text-primary) !important;

    border-radius: var(--radius-md);

    padding: 14px 18px;

    transition: 0.2s;
}

.form-dark:focus {

    background: var(--card-bg) !important;

    border-color: var(--primary) !important;

    box-shadow: 0 0 0 3px var(--stat-accent-soft, rgba(0,247,199,.16)) !important;
}

textarea.form-dark {

    resize: none;
}

.form-dark::placeholder {

    color: var(--text-muted);
}

select.form-dark option {

    background: var(--bg-secondary);

    color: var(--text-primary);
}

@media (max-width: 768px) {

    .profile-header-card {

        flex-direction: column;

        text-align: center;
    }
}

/* ====================== FORMULARIO DE CLASE ====================== */

.page-header {

    margin-bottom: 30px;
}

.rda-form-header {

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-bottom: 24px;

    padding-right: 64px;
}

@media (max-width: 640px) {

    .rda-form-header {

        padding-right: 0;
    }
}

.rda-back-link {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--text-secondary);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 6px;

    width: fit-content;
}

.rda-back-link:hover {

    color: var(--primary-text);
}

.create-class-card {

    width: 100%;

    padding: 36px;
}

.rda-form-section + .rda-form-section {

    margin-top: 30px;
}

.rda-form-eyebrow {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-muted);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

    margin-bottom: 18px;
}

.rda-form-eyebrow i {

    color: var(--primary-text);

    font-size: 14px;
}

.rda-form-divider {

    height: 1px;

    background: var(--border-color);

    margin: 30px 0;
}

.form-big {

    height: 62px;

    font-size: 18px;

    font-weight: 600;
}

.input-group-modern {

    position: relative;
}

.input-group-modern span {

    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 14px;

    pointer-events: none;
}

/* SELECTOR DE NIVEL (PÍLDORAS) */

.level-picker {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.level-pill {

    position: relative;

    cursor: pointer;
}

.level-pill input {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.level-pill span {

    display: inline-flex;

    align-items: center;

    padding: 13px 22px;

    border-radius: var(--radius-pill);

    border: 1px solid var(--border-color-strong);

    background: var(--bg-secondary);

    color: var(--text-secondary);

    font-weight: 700;

    font-size: 14px;

    transition: .15s;
}

.level-pill:hover span {

    border-color: var(--primary);

    color: var(--text-primary);
}

.level-pill input:checked + span {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--primary-ink);
}

.level-pill input:focus-visible + span {

    outline: 2px solid var(--primary);

    outline-offset: 2px;
}

/* AVISO DE RECURRENCIA */

.class-recurring-alert {

    background: var(--stat-accent-soft, rgba(0,247,199,.10));

    border: 1px solid rgba(0,247,199,.25);

    border-radius: var(--radius-lg);

    padding: 20px 22px;
}

.class-recurring-alert .recurring-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: rgba(0,247,199,.16);

    color: var(--primary-text);

    font-size: 19px;
}

.class-recurring-alert .fw-bold {

    color: var(--text-primary);
}

/* ACCIONES DEL FORMULARIO */

.rda-form-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 32px;
}

.btn-ghost {

    background: transparent;

    border: 1px solid var(--border-color-strong);

    color: var(--text-secondary);

    border-radius: var(--radius-md);

    padding: 12px 22px;

    font-weight: 600;

    text-decoration: none;

    transition: .15s;
}

.btn-ghost:hover {

    border-color: var(--text-secondary);

    color: var(--text-primary);
}

/* DASHBOARD CALENDAR */

.dashboard-calendar {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 20px;

    margin-top: 40px;

    align-items: flex-start;
}

.calendar-day-column {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.calendar-day-header {

    background-color: #00F7C7;

    color: white;

    padding: 14px;

    border-radius: 18px;

    text-align: center;

    font-weight: 700;

    font-size: 15px;
}

.calendar-class-card {

    background:
        linear-gradient(
            145deg,
            #111827,
            #0f172a
        );

    border-radius: 22px;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,0.05);

    transition: 0.2s;

    display: block;
}

.calendar-class-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(34,197,94,0.3);
}

.class-time {

    display: inline-block;

    background: rgba(34,197,94,0.15);

    color: #22c55e;

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 12px;
}

.calendar-meta {

    color: #94a3b8;

    font-size: 14px;

    margin-top: 6px;
}

@media (max-width: 768px) {

    .dashboard-calendar {

        grid-template-columns:
            1fr;
    }
}

.match-card {

    background: #111827;

    border-radius: 20px;

    padding: 24px;

    border: 1px solid rgba(255,255,255,.06);

    transition: .3s;
}

.match-card:hover {

    transform: translateY(-4px);

    border-color: #cba135;
}

.match-phase {

    color: #cba135;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.match-team {

    background: #1f2937;

    border-radius: 14px;

    padding: 14px;

    text-align: center;

    font-weight: 600;
}

.match-vs {

    text-align: center;

    margin: 12px 0;

    color: #6b7280;

    font-size: 13px;
}

/* TOURNAMENT DIVISIONS */

.division-checkbox {

    display: flex;

    align-items: center;

    gap: 14px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 18px;

    padding: 18px;

    cursor: pointer;

    transition: .2s;
}

.division-checkbox:hover {

    border-color: #22c55e;

    transform: translateY(-2px);
}

.division-checkbox input {

    width: 18px;
    height: 18px;
}

.division-checkbox span {

    font-weight: 600;
}

/* RESULTS */

.result-card {

    background: #0f172a;
}

.sets-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.set-column {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.set-label {

    font-size: 12px;

    font-weight: 700;

    color: #94a3b8;

    text-transform: uppercase;
}

.set-input {

    background: #111827 !important;

    border: 1px solid rgba(255,255,255,.08) !important;

    border-radius: 14px !important;

    text-align: center;

    font-size: 20px;

    font-weight: 700;

    color: white !important;

    height: 56px;
}

.set-input:focus {

    border-color: #22c55e !important;

    box-shadow: none !important;
}

.winner-badge {

    background: rgba(34,197,94,.15);

    color: #22c55e;

    text-align: center;

    border-radius: 12px;

    padding: 10px;

    font-size: 13px;

    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| COMPACT BRACKET
|--------------------------------------------------------------------------
*/

.tournament-bracket {

    display: inline-flex;

    flex-wrap: wrap;

    gap: 18px;

    align-items: flex-start;

    width: auto;

    max-width: fit-content;
}

.compact-match-card {

    width: 260px;

    background: #111827;

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 18px;

    padding: 16px;

    transition: .2s;
}

.compact-match-card:hover {

    transform: translateY(-2px);

    border-color: rgba(0,255,200,.15);
}

.compact-phase {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #22d3ee;

    margin-bottom: 14px;

    text-transform: uppercase;
}

.compact-team {

    background: rgba(255,255,255,.04);

    border-radius: 12px;

    padding: 10px;

    text-align: center;

    font-size: 13px;

    font-weight: 600;

    color: white;
}

.compact-sets-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 10px 0;
}

.compact-set-input {

    width: 100%;

    height: 42px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.06);

    background: #0f172a;

    color: white;

    text-align: center;

    font-size: 18px;

    font-weight: 700;
}

.compact-set-input:focus {

    outline: none;

    border-color: #22d3ee;
}

.compact-winner {

    margin-top: 10px;

    background: rgba(34,197,94,.15);

    color: #22c55e;

    border-radius: 10px;

    text-align: center;

    padding: 8px;

    font-size: 12px;

    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| CHAMPIONS
|--------------------------------------------------------------------------
*/

.champion-card {

    min-width: 320px;

    background: linear-gradient(
        135deg,
        rgba(255,215,0,.12),
        rgba(255,255,255,.03)
    );

    border: 1px solid rgba(255,215,0,.15);

    border-radius: 24px;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.champion-trophy {

    font-size: 60px;

    margin-bottom: 18px;
}

.champion-title {

    color: #facc15;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.champion-team {

    color: white;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.4;
}

.champion-bootstrap-alert {

    background: linear-gradient(
        135deg,
        #facc15,
        #fde68a
    ) !important;

    border-radius: 24px;

    padding: 28px 32px;
}

/*
|--------------------------------------------------------------------------
| PUBLIC TOURNAMENT
|--------------------------------------------------------------------------
*/

.public-tournament-body {

    background: #0f172a;

    min-height: 100vh;
}

.public-header {

    text-align: center;
}

.public-logo img {

    height: 70px;

    margin-bottom: 24px;
}

.public-title {

    color: white;

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 12px;
}

.public-date {

    color: #94a3b8;

    font-size: 16px;
}

.public-division-card {

    background: #111827;

    border-radius: 28px;

    padding: 32px;

    border: 1px solid rgba(255,255,255,.06);
}

.division-badge {

    background: rgba(255,255,255,.08);

    color: white;

    border-radius: 999px;

    padding: 10px 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.public-results {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin: 14px 0;
}

.public-set {

    display: flex;

    gap: 6px;

    background: rgba(255,255,255,.04);

    border-radius: 10px;

    padding: 8px 12px;

    color: white;

    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| PUBLIC TOURNAMENT
|--------------------------------------------------------------------------
*/

.public-tournament-body {

    background:
        radial-gradient(
            circle at top,
            #1e293b,
            #0f172a 60%
        );

    min-height: 100vh;

    font-family: 'Inter', sans-serif;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.public-header {

    text-align: center;

    margin-bottom: 50px;
}

.public-logo img {

    height: 72px;

    object-fit: contain;

    margin-bottom: 24px;
}

.public-title {

    color: white;

    font-size: 52px;

    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 10px;
}

.public-date {

    color: #94a3b8;

    font-size: 16px;

    font-weight: 500;
}

/*
|--------------------------------------------------------------------------
| DIVISION CARD
|--------------------------------------------------------------------------
*/

.public-division-card {

    background: rgba(17,24,39,.9);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 32px;

    padding: 34px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.35);
}

.division-badge {

    background: rgba(255,255,255,.08);

    color: white;

    border-radius: 999px;

    padding: 10px 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

/*
|--------------------------------------------------------------------------
| CHAMPION ALERT
|--------------------------------------------------------------------------
*/

.champion-bootstrap-alert {

    background: linear-gradient(
        135deg,
        #facc15,
        #fde68a
    ) !important;

    border-radius: 26px;

    padding: 26px 34px;

    box-shadow:
        0 15px 40px rgba(250,204,21,.18);
}

.champion-bootstrap-alert .display-3 {

    font-size: 64px;
}

/*
|--------------------------------------------------------------------------
| BRACKET
|--------------------------------------------------------------------------
*/

.tournament-bracket {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    align-items: flex-start;
}

/*
|--------------------------------------------------------------------------
| MATCH CARD
|--------------------------------------------------------------------------
*/

.compact-match-card {

    width: 240px;

    background: #0f172a;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 22px;

    padding: 18px;

    transition: .2s ease;

    box-shadow:
        0 8px 24px rgba(0,0,0,.25);
}

.compact-match-card:hover {

    transform: translateY(-3px);

    border-color: rgba(34,211,238,.3);
}

/*
|--------------------------------------------------------------------------
| PHASE
|--------------------------------------------------------------------------
*/

.compact-phase {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #22d3ee;

    margin-bottom: 14px;

    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| TEAM
|--------------------------------------------------------------------------
*/

.compact-team {

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.03);

    border-radius: 14px;

    padding: 12px;

    text-align: center;

    color: white;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| RESULTS
|--------------------------------------------------------------------------
*/

.public-results {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin: 14px 0;
}

.public-set {

    display: flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,.04);

    border-radius: 12px;

    padding: 8px 12px;

    color: white;

    font-size: 14px;

    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| WINNER
|--------------------------------------------------------------------------
*/

.compact-winner {

    margin-top: 14px;

    background: rgba(34,197,94,.14);

    border: 1px solid rgba(34,197,94,.15);

    color: #22c55e;

    border-radius: 12px;

    text-align: center;

    padding: 10px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {

    .public-title {

        font-size: 38px;
    }

    .public-division-card {

        padding: 24px;
    }

    .tournament-bracket {

        justify-content: center;
    }

    .compact-match-card {

        width: 100%;
    }

    .champion-bootstrap-alert {

        flex-direction: column;

        text-align: center;
    }
}

/*
|--------------------------------------------------------------------------
| PUBLIC TOURNAMENT
|--------------------------------------------------------------------------
*/

.public-tournament-body {

    background: #0f172a;

    min-height: 100vh;
}

.public-header {

    text-align: center;
}

.public-logo img {

    height: 70px;

    margin-bottom: 24px;
}

.public-title {

    color: white;

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 12px;
}

.public-date {

    color: #94a3b8;

    font-size: 16px;
}

.public-division-card {

    background: #111827;

    border-radius: 28px;

    padding: 32px;

    border: 1px solid rgba(255,255,255,.06);
}

.division-badge {

    background: rgba(255,255,255,.08);

    color: white;

    border-radius: 999px;

    padding: 10px 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

.public-results {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin: 14px 0;
}

.public-set {

    display: flex;

    gap: 6px;

    background: rgba(255,255,255,.04);

    border-radius: 10px;

    padding: 8px 12px;

    color: white;

    font-weight: 700;
}

/* ====================== INFO GRID (SHOW CLASE) ====================== */

.info-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));

    gap: 14px;
}

.info-box {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-md);

    padding: 16px;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.info-box-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: rgba(0,247,199,.14);

    color: var(--primary-text);

    font-size: 15px;

    margin-bottom: 6px;
}

.info-box span {

    color: var(--text-muted);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.info-box strong {

    color: var(--text-primary);

    font-size: 16px;

    font-weight: 700;
}

.badge-role {

    background: rgba(0,247,199,.14);

    color: var(--primary-text);

    border-radius: var(--radius-pill);

    padding: 8px 16px;

    font-size: 13px;

    font-weight: 700;
}

.btn-ghost-danger {

    color: var(--danger);

    border-color: rgba(239,68,68,.35);
}

.btn-ghost-danger:hover {

    border-color: var(--danger);

    background: rgba(239,68,68,.08);

    color: var(--danger);
}

/* ====================== ASISTENCIA ====================== */

.attendance-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 20px;

    background: var(--bg-secondary);

    border-radius: var(--radius-md);

    margin-bottom: 12px;

    border: 1px solid var(--border-color-strong);
}

.attendance-option {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 20px;

    cursor: pointer;

    color: var(--text-muted);

    transition: .15s;
}

.attendance-option:has(input:checked) {

    color: var(--primary-text);
}

.attendance-option input {

    accent-color: var(--primary);
}

/* ====================== SESIONES ====================== */

.session-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-lg);

    padding: 22px;

    margin-bottom: 22px;
}

.session-date {

    color: var(--text-secondary);

    font-size: 13px;

    font-weight: 600;
}

.badge-session {

    padding: 8px 14px;

    border-radius: var(--radius-pill);

    font-size: 12px;

    font-weight: 700;
}

.badge-session.planned {

    background: rgba(96,165,250,.15);

    color: #60a5fa;
}

.badge-session.completed {

    background: rgba(34,197,94,.15);

    color: #4ade80;
}

.session-block {

    margin-top: 18px;
}

.session-block strong {

    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--text-primary);

    font-size: 13px;
}

.session-block strong i {

    color: var(--primary-text);
}

.session-label {

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;

    color: var(--text-primary);
}

/* ====================== PESTAÑAS DE CLASE ====================== */

.class-tabs {

    display: flex;

    gap: 10px;

    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 6px;

    scrollbar-width: none;
}

.class-tabs::-webkit-scrollbar {

    display: none;
}

.class-tabs .nav-link {

    display: flex;

    align-items: center;

    gap: 8px;

    border: 1px solid var(--border-color-strong) !important;

    border-radius: var(--radius-pill) !important;

    padding: 12px 24px;

    font-weight: 700;

    color: var(--text-secondary);

    background: var(--bg-secondary);

    transition: all .2s ease;

    white-space: nowrap;

    min-width: max-content;
}

.class-tabs .nav-link:hover {

    border-color: var(--primary);

    color: var(--text-primary);
}

.class-tabs .nav-link.active {

    background: var(--primary) !important;

    border-color: var(--primary) !important;

    color: var(--primary-ink) !important;

    box-shadow: 0 8px 20px rgba(0,247,199,.2);
}

.tab-pane {

    animation: fadeTab .25s ease;
}

@keyframes fadeTab {

    from {

        opacity: 0;

        transform: translateY(10px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

.user-avatar {

    width: 64px;

    height: 64px;

    min-width: 64px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: var(--primary-ink);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow: 0 8px 24px rgba(0,247,199,.2);

    border: 3px solid var(--border-color);

    transition: .25s;
}

.user-card {

    position: relative;

    overflow: hidden;

    transition: .25s;
}

.user-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: var(--user-accent, var(--primary));
}

.user-card:hover {

    transform: translateY(-4px);

    border-color: var(--user-accent, var(--primary));
}

.user-card-name {

    color: var(--text-primary);

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.user-card-email {

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.min-w-0 {

    min-width: 0;
}

.player-level {

    background: var(--surface-raised);

    color: var(--text-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-pill);

    padding: 6px 14px;

    font-size: 12px;

    font-weight: 700;
}

/* ====================== BÚSQUEDA Y FILTROS DE USUARIOS ====================== */

.user-toolbar {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 14px;
}

.user-search {

    position: relative;

    flex: 1;

    min-width: 240px;
}

.user-search i {

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 15px;
}

.user-search input {

    width: 100%;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    color: var(--text-primary);

    border-radius: var(--radius-md);

    padding: 13px 16px 13px 42px;

    font-size: 14px;

    transition: .2s;
}

.user-search input::placeholder {

    color: var(--text-muted);
}

.user-search input:focus {

    outline: none;

    border-color: var(--primary);

    background: var(--card-bg);

    box-shadow: 0 0 0 3px rgba(0,247,199,.14);
}

.user-filters {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.user-filter-pill {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    color: var(--text-secondary);

    border-radius: var(--radius-pill);

    padding: 10px 18px;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .15s;

    white-space: nowrap;
}

.user-filter-pill:hover {

    border-color: var(--primary);

    color: var(--text-primary);
}

.user-filter-pill.active {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--primary-ink);
}

/* ====================== PAGINACIÓN DE USUARIOS ====================== */

.user-pagination {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.user-pagination-info {

    color: var(--text-muted);

    font-size: 13px;
}

.user-pagination-controls {

    display: flex;

    align-items: center;

    gap: 6px;
}

.user-pagination-pages {

    display: flex;

    gap: 6px;
}

.user-page-btn {

    min-width: 38px;

    height: 38px;

    padding: 0 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    color: var(--text-secondary);

    border-radius: var(--radius-md);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .15s;
}

.user-page-btn:hover:not(:disabled) {

    border-color: var(--primary);

    color: var(--text-primary);
}

.user-page-btn.active {

    background: var(--primary);

    border-color: var(--primary);

    color: var(--primary-ink);
}

.user-page-btn:disabled {

    opacity: .4;

    cursor: not-allowed;
}

/* ====================== DÍAS NO LECTIVOS (TARJETAS) ====================== */

.ntd-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

    gap: 12px;
}

.ntd-card {

    position: relative;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-md);

    padding: 14px;

    transition: .15s;
}

.ntd-card:hover {

    border-color: var(--primary);
}

.ntd-card-past {

    opacity: .55;
}

.ntd-card-delete {

    position: absolute;

    top: 8px;
    right: 8px;

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--text-muted);

    font-size: 15px;

    text-decoration: none;

    opacity: 0;

    transition: .15s;
}

.ntd-card:hover .ntd-card-delete {

    opacity: 1;
}

.ntd-card-delete:hover {

    background: rgba(239,68,68,.14);

    color: var(--danger);
}

.ntd-date {

    width: 48px;

    flex-shrink: 0;

    text-align: center;

    background: rgba(0,247,199,.12);

    border-radius: var(--radius-sm);

    padding: 6px 4px;

    margin-bottom: 10px;
}

.ntd-card-past .ntd-date {

    background: var(--surface-raised);
}

.ntd-date-day {

    font-family: var(--font-display);

    font-size: 17px;

    font-weight: 700;

    color: var(--text-primary);

    line-height: 1;
}

.ntd-date-month {

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    color: var(--primary-text);

    margin-top: 2px;
}

.ntd-card-past .ntd-date-month {

    color: var(--text-muted);
}

.ntd-card-label {

    color: var(--text-primary);

    font-weight: 700;

    font-size: 13.5px;

    line-height: 1.3;

    padding-right: 16px;
}

.ntd-card-weekday {

    color: var(--text-muted);

    font-size: 11.5px;

    margin-top: 3px;
}

.ntd-holiday-card .rda-switch-track {

    width: 36px;

    height: 21px;
}

.ntd-holiday-card .rda-switch-thumb {

    width: 15px;
    height: 15px;
}

.ntd-holiday-card input:checked + .rda-switch-track .rda-switch-thumb {

    transform: translateX(15px);
}

/* ====================== FESTIVOS ANUALES (SWITCH) ====================== */

.rda-switch-row {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px;

    background: var(--bg-secondary);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-md);

    margin-bottom: 10px;
}

.rda-switch-row:last-child {

    margin-bottom: 0;
}

.rda-switch {

    display: inline-flex;

    cursor: pointer;
}

.rda-switch input {

    position: absolute;

    opacity: 0;

    width: 0;
    height: 0;
}

.rda-switch-track {

    display: inline-flex;

    align-items: center;

    width: 44px;
    height: 26px;

    background: var(--border-color-strong);

    border-radius: var(--radius-pill);

    padding: 3px;

    transition: .2s;
}

.rda-switch-thumb {

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--card-bg);

    box-shadow: 0 1px 3px rgba(0,0,0,.3);

    transition: transform .2s ease;
}

.rda-switch input:checked + .rda-switch-track {

    background: var(--primary);
}

.rda-switch input:checked + .rda-switch-track .rda-switch-thumb {

    transform: translateX(18px);

    background: var(--primary-ink);
}

.rda-switch input:focus-visible + .rda-switch-track {

    outline: 2px solid var(--primary);

    outline-offset: 2px;
}

.btn-ghost-icon {

    padding: 12px 14px;
}

/* ====================== PLANTILLAS DE PLANIFICACIÓN GENERAL ====================== */

.curriculum-template-card {

    border-style: dashed;

    border-color: rgba(167,139,250,.4);

    background: rgba(167,139,250,.05);
}

.curriculum-template-card .session-date {

    color: #A78BFA;
}

/* ====================== CAMPO PREDICTIVO (AÑADIR JUGADOR) ====================== */

.player-autocomplete {

    position: relative;
}

.player-autocomplete > i {

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 14px;

    pointer-events: none;
}

.player-autocomplete input {

    padding-left: 42px !important;
}

.player-autocomplete-results {

    display: none;

    position: absolute;

    top: calc(100% + 6px);

    left: 0;
    right: 0;

    z-index: 20;

    background: var(--card-bg);

    border: 1px solid var(--border-color-strong);

    border-radius: var(--radius-md);

    box-shadow: 0 12px 28px rgba(0,0,0,.3);

    max-height: 240px;

    overflow-y: auto;
}

.player-autocomplete-results.is-open {

    display: block;
}

.player-autocomplete-item {

    padding: 12px 16px;

    color: var(--text-primary);

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: .1s;
}

.player-autocomplete-item:hover {

    background: var(--surface-raised);

    color: var(--primary-text);
}

.player-autocomplete-item + .player-autocomplete-item {

    border-top: 1px solid var(--border-color);
}

@media (max-width: 1399px) {

    .sidebar {

        position: fixed;
        top: 0;
        left: -280px;

        width: 280px;
        height: 100vh;

        z-index: 9999;

        transition: .3s ease;
    }

    .sidebar.active {

        left: 0;
    }

    .main-content {

        margin-left: 0 !important;
    }

    .floating-menu {

        display: flex !important;
    }

}

@media (max-width: 1399px) {

    .sidebar {

        position: fixed;
        left: -280px;
        top: 0;

        width: 280px;
        height: 100vh;

        z-index: 9999;

        transition: .3s;
    }

    .sidebar.active {

        left: 0;
    }

    .main-content {

        margin-left: 0 !important;
        width: 100% !important;
    }

    .floating-menu {

        display: flex !important;
    }
}

@media (max-width: 1400px) {

    .floating-menu {

        display: flex !important;

        position: fixed;

        left: 20px;
        bottom: 20px;

        width: 65px;
        height: 65px;

        z-index: 10000;
    }

}

@media (max-width: 1400px) {

    .week-grid {

        display: grid;

        grid-template-columns:
            repeat(5, minmax(240px, 1fr));

        gap: 20px;
    }

}

@media (max-width: 768px) {

    .week-grid {

        display: flex;

        overflow-x: auto;

        gap: 20px;

        padding-bottom: 10px;
    }

    .day-column {

        min-width: 280px;
        flex-shrink: 0;
    }

}

/* ==========================================================
   TABLET + MOBILE SIDEBAR
========================================================== */

.floating-menu {

    display: none;

    position: fixed;

    left: 20px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    border: none;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #14f1d9,
        #02F6C7
    );

    color: white;

    font-size: 24px;

    align-items: center;
    justify-content: center;

    z-index: 10001;

    box-shadow:
        0 10px 30px rgba(20,241,217,.35);
}

@media (max-width: 1400px) {

    .sidebar {

        transform: translateX(-100%);
    }

    .sidebar.active {

        transform: translateX(0);
    }

    .main-content {

        margin-left: 0 !important;
    }

    .floating-menu {

        display: flex;
    }

    .overlay.active {

        display: block;
    }

}

@media (max-width: 1400px) {

    .dashboard-calendar {

        grid-template-columns:
            repeat(5, 1fr);
    }
}

@media (max-width: 768px) {

    .dashboard-calendar {

        display: flex;

        overflow-x: auto;

        gap: 20px;
    }

    .calendar-day-column {

        min-width: 280px;
        flex-shrink: 0;
    }
}