/* ADMIN-FC — estilos propios sobre Bootstrap 5 */
:root {
    --fc-primary: #0b6e4f;      /* verde césped */
    --fc-primary-dark: #08533c;
    --fc-accent: #f4b400;       /* dorado */
    --fc-dark: #14213d;
}

body {
    background: #f3f5f7;
    color: #1f2937;
}

/* Navbar */
.fc-navbar {
    background: linear-gradient(90deg, var(--fc-primary-dark), var(--fc-primary));
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    border-bottom: 3px solid var(--fc-accent);   /* acento del club */
}
.fc-navbar.nav-solido { background: var(--fc-primary); }
.fc-navbar.nav-acento { background: linear-gradient(90deg, var(--fc-primary), var(--fc-accent)); }
.fc-navbar .navbar-brand { letter-spacing: .3px; }
.fc-navbar .nav-link.active { font-weight: 600; border-bottom: 2px solid var(--fc-accent); }
.fc-navbar .nav-link.disabled-soft { opacity: .6; cursor: default; }

/* Botones primarios */
.btn-primary {
    --bs-btn-bg: var(--fc-primary);
    --bs-btn-border-color: var(--fc-primary);
    --bs-btn-hover-bg: var(--fc-primary-dark);
    --bs-btn-hover-border-color: var(--fc-primary-dark);
    --bs-btn-active-bg: var(--fc-primary-dark);
    --bs-btn-active-border-color: var(--fc-primary-dark);
}
.text-fc-primary { color: var(--fc-primary) !important; }
.bg-fc-primary { background-color: var(--fc-primary) !important; }
.text-fc-accent { color: var(--fc-accent) !important; }
.bg-fc-accent { background-color: var(--fc-accent) !important; }
.btn-accent {
    --bs-btn-bg: var(--fc-accent);
    --bs-btn-border-color: var(--fc-accent);
    --bs-btn-color: #1f2937;
    --bs-btn-hover-bg: var(--fc-accent);
    --bs-btn-hover-border-color: var(--fc-accent);
    --bs-btn-hover-color: #000;
}
/* Acento en tarjetas de módulo del dashboard */
.module-card .module-icon { box-shadow: inset 0 -3px 0 0 var(--fc-accent); }

/* Tarjetas */
.card { border: none; box-shadow: 0 1px 3px rgba(0, 0, 0, .08); border-radius: .6rem; }
.card-header { background: #fff; border-bottom: 1px solid #eef0f2; font-weight: 600; }

/* Tarjetas de módulo (dashboard) */
.module-card { transition: transform .12s ease, box-shadow .12s ease; height: 100%; }
.module-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0, 0, 0, .12); }
.module-card .module-icon {
    width: 54px; height: 54px; border-radius: .8rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; background: var(--fc-primary);
}
.module-card.is-disabled { opacity: .65; }

/* Login / páginas públicas */
.fc-auth-wrap {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--fc-primary-dark), var(--fc-dark));
    padding: 1.5rem;
}
.fc-auth-card { width: 100%; max-width: 420px; border-radius: .9rem; }

/* Misc */
.fc-footer { border-top: 1px solid #e7e9ec; background: #fff; }
.table thead th { white-space: nowrap; }
.stat-tile { border-radius: .6rem; background: #fff; padding: 1rem 1.1rem; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.stat-tile .stat-value { font-size: 1.6rem; font-weight: 700; line-height: 1.1; }
.stat-tile .stat-label { color: #6b7280; font-size: .85rem; }
.avatar-sm { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.avatar-lg { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }

/* ===== Cabecera de reportes ===== */
.report-header {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    margin-bottom: .25rem;
}
.report-brand { display: flex; align-items: center; gap: .9rem; }
.report-logo { height: 56px; width: auto; max-width: 180px; }
.report-club { font-size: 1.25rem; font-weight: 700; color: var(--fc-primary); line-height: 1.15; }
.report-title { font-weight: 600; }
.report-sub, .report-meta { color: #6b7280; font-size: .85rem; }
.report-rule { border-top: 2px solid var(--fc-primary); opacity: .9; margin-top: .4rem; }

/* ===== Impresión ===== */
@media print {
    .fc-navbar, .fc-footer, .nav-pills, .no-print, .btn, .alert-dismissible { display: none !important; }
    body { background: #fff; }
    main.container-fluid { padding: 0 !important; }
    .card { box-shadow: none !important; border: 1px solid #ddd !important; break-inside: avoid; }
    .card-header { background: #fff !important; }
    a[href] { text-decoration: none !important; color: inherit !important; }
    * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
