@import '_content/Shared/Shared.52qlcc7kvs.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ofc4bbdklp] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

main[b-ofc4bbdklp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-width: 0;
}

main.landing-main[b-ofc4bbdklp] {
    width: 100%;
}

/* ── Sidebar ─────────────────────────────────────── */

.sidebar[b-ofc4bbdklp] {
    background: linear-gradient(180deg, #1e5631 0%, #0d3018 100%);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: width 0.22s ease;
    overflow: hidden;
    z-index: 200;
}

/* ── Top bar (within main) ───────────────────────── */

.top-row[b-ofc4bbdklp] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

    .top-row[b-ofc4bbdklp]  a, .top-row[b-ofc4bbdklp]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

/* ── Mobile layout (<768px) ──────────────────────── */

@media (max-width: 767.98px) {
    .page[b-ofc4bbdklp] {
        flex-direction: column;
    }

    .sidebar[b-ofc4bbdklp] {
        width: 100% !important; /* override any inline/collapsed width */
        height: auto;
    }
}

/* ── Desktop/tablet layout (≥768px) ─────────────── */

@media (min-width: 768px) {
    .page[b-ofc4bbdklp] {
        flex-direction: row;
    }

    .sidebar[b-ofc4bbdklp] {
        width: 240px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .sidebar.sidebar-collapsed[b-ofc4bbdklp] {
        width: 62px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ── Mobile header (hamburger row) ───────────────── */

.mobile-header[b-4yk6wy4zd6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 3.25rem;
    background: rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.hamburger[b-4yk6wy4zd6] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.15s;
}

    .hamburger:hover[b-4yk6wy4zd6] {
        background: rgba(255,255,255,0.22);
    }

/* ── Mobile nav body ─────────────────────────────── */

.nav-body[b-4yk6wy4zd6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Mobile: collapsed by default, slide down when open */
@media (max-width: 767.98px) {
    .mobile-nav-closed[b-4yk6wy4zd6] {
        display: none;
    }

    .mobile-nav-open[b-4yk6wy4zd6] {
        display: flex;
    }
}

/* Desktop: always visible, ignore mobile open/closed */
@media (min-width: 768px) {
    .mobile-header[b-4yk6wy4zd6] {
        display: none;
    }

    .mobile-nav-closed[b-4yk6wy4zd6],
    .mobile-nav-open[b-4yk6wy4zd6] {
        display: flex !important;
    }
}

/* ── Sidebar header (brand + collapse toggle) ─────── */

.sidebar-head[b-4yk6wy4zd6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.75rem;
    height: 3.25rem;
    background: rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* ── Brand name ──────────────────────────────────── */

.brand-name[b-4yk6wy4zd6] {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
}

/* ── Collapse toggle button ──────────────────────── */

.collapse-toggle[b-4yk6wy4zd6] {
    display: none; /* hidden on mobile */
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.75);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
    margin-left: auto;
}

    .collapse-toggle:hover[b-4yk6wy4zd6] {
        background: rgba(255,255,255,0.2);
        color: #fff;
    }

@media (min-width: 768px) {
    .collapse-toggle[b-4yk6wy4zd6] {
        display: flex;
    }
}

/* ── Nav items ───────────────────────────────────── */

.nav-item[b-4yk6wy4zd6] {
    padding: 0.1rem 0.6rem;
}

    .nav-item[b-4yk6wy4zd6]  a {
        color: rgba(255,255,255,0.78);
        border-radius: 7px;
        height: 2.6rem;
        display: flex;
        align-items: center;
        padding: 0 0.65rem;
        white-space: nowrap;
        transition: background 0.15s, color 0.15s;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .nav-item[b-4yk6wy4zd6]  a:hover {
        background: rgba(255,255,255,0.12);
        color: #fff;
    }

    .nav-item[b-4yk6wy4zd6]  a.active {
        background: rgba(255,255,255,0.22);
        color: #fff;
    }

/* Indented sub-items (admin groups) */
.nav-item-indented[b-4yk6wy4zd6]  a {
    padding-left: 1.5rem !important;
}

/* Settings pinned at bottom */
.nav-item-settings[b-4yk6wy4zd6] {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* ── Icons ───────────────────────────────────────── */

.bi[b-4yk6wy4zd6] {
    font-size: 1rem;
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
}

.nav-label[b-4yk6wy4zd6] {
    margin-left: 0.65rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Section headers ─────────────────────────────── */

.nav-section-header[b-4yk6wy4zd6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}

/* Section divider shown in icon-rail mode */
.nav-section-divider[b-4yk6wy4zd6] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0 0.25rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    cursor: default;
}
/* /Pages/Football/Fixtures.razor.rz.scp.css */
.sortable[b-qtc4y475dj] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.sortable:hover[b-qtc4y475dj] {
    background-color: rgba(0, 0, 0, 0.05);
}

.sortable .bi[b-qtc4y475dj] {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Clickable date cell */
.clickable-date[b-qtc4y475dj] {
    cursor: pointer;
    user-select: none;
}

.clickable-date:hover[b-qtc4y475dj] {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Calendar Styles */
.calendar-container[b-qtc4y475dj] {
    background: white;
    border-radius: 0.25rem;
}

.calendar-day[b-qtc4y475dj] {
    position: relative;
    overflow: hidden;
}

.calendar-day.other-month[b-qtc4y475dj] {
    background-color: #f8f9fa;
}

.calendar-day.today[b-qtc4y475dj] {
    background-color: #fff3cd;
}

.fixture-item:hover[b-qtc4y475dj] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

@media (max-width: 768px) {
    .calendar-day[b-qtc4y475dj] {
        min-height: 80px !important;
        font-size: 0.85rem;
    }

    .fixture-item[b-qtc4y475dj] {
        font-size: 0.65rem !important;
    }
}
/* /Pages/Football/MyPlayerDetail.razor.rz.scp.css */
/* Hover effect for clickable stat cards */
.hover-card[b-ckp68sjsa3] {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover[b-ckp68sjsa3] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Fixture link styling */
.fixture-link[b-ckp68sjsa3] {
    cursor: pointer;
    transition: color 0.2s ease;
}

.fixture-link:hover[b-ckp68sjsa3] {
    color: #0d6efd !important;
    text-decoration: underline !important;
}

/* Table row hover for better interactivity */
.table-hover tbody tr:hover[b-ckp68sjsa3] {
    background-color: rgba(0, 0, 0, 0.02);
}
/* /Pages/Football/Standings.razor.rz.scp.css */
/* Subtle highlight for teams where the parent has children */
.parent-team-highlight[b-c8iq9l4jjm] {
    background-color: rgba(13, 110, 253, 0.08) !important;
    border-left: 3px solid #0d6efd;
}

.parent-team-highlight:hover[b-c8iq9l4jjm] {
    background-color: rgba(13, 110, 253, 0.12) !important;
}

/* Ensure text remains readable */
.parent-team-highlight td[b-c8iq9l4jjm] {
    font-weight: 500;
}

/* Add a subtle animation on load */
@keyframes highlightFade-b-c8iq9l4jjm {
    0% {
        background-color: rgba(13, 110, 253, 0.2);
    }
    100% {
        background-color: rgba(13, 110, 253, 0.08);
    }
}

.parent-team-highlight[b-c8iq9l4jjm] {
    animation: highlightFade-b-c8iq9l4jjm 0.6s ease-in-out;
}
/* /Pages/Football/ViewFixture.razor.rz.scp.css */
/* Goal event highlight - matching ViewMatchReport.razor styling */
.goal-event-highlight[b-u5bwaobgzf] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    border-left: 5px solid #FF8C00 !important;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    padding-left: 1.5rem !important;
}

.goal-event-highlight .badge[b-u5bwaobgzf] {
    background-color: #8B4513 !important;
    color: white;
    font-weight: bold;
}

/* Clickable header hover effect */
.clickable-header[b-u5bwaobgzf] {
    transition: background-color 0.2s ease;
}

.clickable-header:hover[b-u5bwaobgzf] {
    background-color: #0b5ed7 !important;
    transform: translateY(-1px);
}

.clickable-header:active[b-u5bwaobgzf] {
    transform: translateY(0);
}
/* /Pages/Home.razor.rz.scp.css */
.landing-page[b-6en4wbq5n3] {
    min-height: 100vh;
}

.hero-section[b-6en4wbq5n3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section .logo-placeholder[b-6en4wbq5n3] {
    animation: float-b-6en4wbq5n3 3s ease-in-out infinite;
}

@keyframes float-b-6en4wbq5n3 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-section h1[b-6en4wbq5n3] {
    color: white;
}

.hero-section .lead[b-6en4wbq5n3] {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .fs-5[b-6en4wbq5n3] {
    color: rgba(255, 255, 255, 0.85);
}

.features-section[b-6en4wbq5n3] {
    background-color: #f8f9fa;
}

.features-section .card[b-6en4wbq5n3] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .card:hover[b-6en4wbq5n3] {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.cta-section[b-6en4wbq5n3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2[b-6en4wbq5n3] {
    color: white;
}

.cta-section .lead[b-6en4wbq5n3] {
    color: rgba(255, 255, 255, 0.9);
}

/* Dashboard Styles */
.dashboard-page[b-6en4wbq5n3] {
    padding: 2rem 0;
}

.dashboard-page .card[b-6en4wbq5n3] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-page .card:hover[b-6en4wbq5n3] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Hover effect for clickable stat cards */
.hover-lift[b-6en4wbq5n3] {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover[b-6en4wbq5n3] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.list-group-item[b-6en4wbq5n3] {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.list-group-item:last-child[b-6en4wbq5n3] {
    border-bottom: none;
}
/* /Pages/Products.razor.rz.scp.css */
.card[b-0tsc0b9thh] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
}

.card:hover[b-0tsc0b9thh] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title[b-0tsc0b9thh] {
    font-weight: 600;
    color: #2c3e50;
}

.card-subtitle[b-0tsc0b9thh] {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-footer[b-0tsc0b9thh] {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.alert-danger[b-0tsc0b9thh] {
    border-radius: 8px;
    padding: 1rem;
}

/* List View Styles */
.table-responsive[b-0tsc0b9thh] {
    animation: fadeIn-b-0tsc0b9thh 0.3s ease-in;
}

.table[b-0tsc0b9thh] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead[b-0tsc0b9thh] {
    background-color: #f8f9fa;
}

.table tbody tr[b-0tsc0b9thh] {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover[b-0tsc0b9thh] {
    background-color: #f8f9fa;
}

.text-truncate[b-0tsc0b9thh] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Button Group Styles */
.btn-group .btn.active[b-0tsc0b9thh] {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

@keyframes fadeIn-b-0tsc0b9thh {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
