.dashboard-aside-wrapper,
.dashboard-aside-wrapper + article {
    --admin-sidebar-width: 280px;
    --admin-logo-height: 100px;
}

.dashboard-aside-wrapper {
    width: var(--admin-sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #edf0f5;
    /* box-shadow: 10px 0 30px rgba(32, 41, 56, 0.08); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.dashboard-nav-list-wrapper {
    flex: 0 0 calc(100vh - var(--admin-logo-height));
    height: calc(100vh - var(--admin-logo-height));
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.dashboard-aside-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 0;
    margin: 0;
    padding: 14px 18px 14px;
    list-style: none;
}

.dashboard-aside-wrapper ul.dashboard-nav-list {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.dashboard-aside-wrapper ul.dashboard-nav-list-bottom {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid #f0f2f5;
}
.dashboard-card{
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 15px;
    padding: 20px;
}

#tournament-select {
    min-width: 180px;
    border: 1px solid #e0e2e8;
    border-radius: 999px;
    background: #fff;
    color: #202938;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#tournament-select:focus {
    border-color: #f05a22;
    box-shadow: 0 0 0 3px rgba(240, 90, 34, 0.15);
    outline: none;
}

label[for="tournament-select"] {
    color: #6f7786;
    font-size: 0.9rem;
}

.tournament-filter-row label {
    color: #6f7786;
    font-size: 0.9rem;
}

.tournament-filter-select {
    min-width: 260px;
    border: 1px solid #e0e2e8;
    border-radius: 999px;
    background: #ffffff;
    color: #202938;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.tournament-filter-select:hover {
    transform: translateY(-1px);
}

.tournament-filter-select:focus {
    border-color: #f05a22;
    box-shadow: 0 0 0 3px rgba(240, 90, 34, 0.15);
    outline: none;
}

.tournament-filter-select::-ms-expand {
    display: none;
}

.tournament-filter-row {
    position: relative;
}

.tournament-filter-row::after {
    content: '\25BC';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6f7786;
    font-size: 0.8rem;
}


.team-list-table {
    border-collapse: separate;
    border-spacing: 0 0.7rem;
}

.team-list-table thead th {
    border-bottom: none;
    color: #667085;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
}

.team-list-table tbody tr {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
}

.team-list-table tbody tr td {
    border-top: none;
    border-bottom: none;
    vertical-align: middle;
    padding: 0.5rem 0.5rem;
}

.team-list-table tbody tr td:first-of-type {
    padding-left: 1.5rem;
}

.team-initial-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.08);
}

.team-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-status-pill.active {
    color: #0f5132;
    background: #d1e7dd;
}

.team-status-pill.pending {
    color: #664d03;
    background: #fff3cd;
}

.team-status-pill.inactive {
    color: #41464e;
    background: #f1f3f5;
}

.btn-outline-secondary {
    border-color: transparent;
    color: #475569;
}

.btn-add-team {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 30px rgba(240, 90, 34, 0.18);
    text-transform: none;
    font-size: 14px;
    color: #fff;
    background: #f05a22;
}

.btn-add-team i {
    width: 20px;
    height: 20px;
}

.btn-add-team:hover,
.btn-add-team:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(240, 90, 34, 0.22);
}

.lucide-icon,
.lucide-icon svg,
.lucide,
[i\[data-lucide\]],
[i\[data-lucide\]] svg {
    width: 18px !important;
    height: 18px !important;
    display: inline-flex;
    vertical-align: middle;
    stroke-width: 2;
    color: inherit !important;
    /* fill: currentColor !important; */
    stroke: currentColor !important;
}

[i\[data-lucide\]] {
    width: 18px !important;
    height: 18px !important;
}

.btn-outline-secondary,
.btn-outline-secondary .lucide,
.btn-outline-secondary .lucide-icon,
.btn-outline-secondary svg.lucide,
.btn-outline-secondary i[data-lucide] {
    color: #475569 !important;
}

.btn-outline-secondary:hover {
    background: #f8fafc;
}

.action-menu-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 10rem;
    padding: 0.35rem 0;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.12);
    z-index: 1050;
}

.action-menu-dropdown .dropdown-item {
    color: #1f2937;
    padding: 0.5rem 1rem;
    font-size: 14px;
}

.action-menu-dropdown .dropdown-item:hover,
.action-menu-dropdown .dropdown-item:focus {
    background: #fff0e8;
    color: #f05a22;
}

.dashboard-aside-wrapper + article {
    width: calc(100% - var(--admin-sidebar-width));
    max-width: calc(100% - var(--admin-sidebar-width));
    flex: 0 0 calc(100% - var(--admin-sidebar-width));
    margin-left: var(--admin-sidebar-width);
}

.dashboard-aside-wrapper .logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--admin-logo-height);
    background: #fff;
    border-bottom: 1px solid #edf0f5;
    margin-bottom: 0 !important;
    padding: 18px 0 !important;
}

.dashboard-aside-wrapper .logo img {
    width: 70px;
    height: auto;
    object-fit: contain;
    margin: unset;
}

.dashboard-nav-link {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    background: transparent;
    color: #6f7786;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dashboard-nav-link:hover,
.dashboard-nav-link:focus-visible {
    background: #fff6f0;
    color: #f05a22;
    text-decoration: none;
}

.dashboard-nav-link.is-active {
    background: #fff0e8;
    color: #f05a22;
}

.dashboard-nav-link--logout {
    color: #6f7786;
}

.dashboard-aside-wrapper p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.dashboard-aside-wrapper p [data-lucide],
.dashboard-aside-wrapper p svg {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    stroke-width: 2;
}

.dashboard-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #edf0f5;
    position: sticky;
    top: 0;
    z-index: 900;
}

.dashboard-header__nav {
    height: 80px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 16px 16px;
}

.dashboard-header .search-container {
    width: min(896px, 58vw);
    height: 42px;
    display: flex;
    align-items: center;
    background: #f8f9fb;
    border-radius: 999px;
    padding: 0;
    border: 1px solid #dedde1;
}

.dashboard-header .search-container input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #202938;
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px;
    border-radius: 999px;
}

.dashboard-header .search-container input::placeholder {
    color: #5b5e64;
    opacity: 1;
}

.dashboard-header .search-container button,
.dashboard-header .icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #9aa3b2;
    cursor: pointer;
}

.dashboard-header .search-container button {
    width: 48px;
    height: 48px;
    font-size: 28px;
}

.dashboard-header .search-container [data-lucide],
.dashboard-header .search-container svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.dashboard-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 0 0 auto;
}

.dashboard-header .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard-header .icon-button {
    position: relative;
    width: 35px;
    height: 35px;
    font-size: 32px;
}

.dashboard-header .icon-button [data-lucide],
.dashboard-header .icon-button svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.dashboard-header .icon-button--notification::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f28b22;
}

.dashboard-header .header-divider {
    width: 1px;
    height: 40px;
    background: #ea5a22;
}

.dashboard-header .profile-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-header .profile-name {
    min-width: 80px;
    text-align: left;
}

.dashboard-header .profile-name h3,
.dashboard-header .profile-name p {
    margin: 0;
    line-height: 1.1;
}

.dashboard-header .profile-name h3 {
    color: #202938;
    font-size: 14px;
    font-weight: 700;
}

.dashboard-header .profile-name p {
    margin-top: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
}

.dashboard-header .profile-avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #e5e8ee;
    border-radius: 50%;
    background: #f8f9fb;
    color: #9aa3b2;
    font-size: 34px;
}

.dashboard-header .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-header .profile-avatar [data-lucide],
.dashboard-header .profile-avatar svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.dashboard-list-card {
    min-height: 320px;
    padding: 18px;
    background: #ffffff;
    border-radius: 8px;
}

.dashboard-list-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-list-card__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #f05a22;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-list-card__header h3 {
    margin: 0;
    color: #202938;
    font-size: 18px;
    font-weight: 800;
}

.dashboard-list-card__count {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0e8;
    color: #f05a22;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-list {
    display: grid;
    gap: 12px;
}

.dashboard-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    background: #fff;
}

.fixture-list-item__date,
.fantasy-list-item__rank {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff6f0;
    color: #f05a22;
}

.fixture-list-item__date strong,
.fantasy-list-item__rank {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.fixture-list-item__date span {
    margin-top: 3px;
    color: #6f7786;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fixture-list-item__content,
.fantasy-list-item__content {
    min-width: 0;
    flex: 1;
}

.fixture-list-item__content h4,
.fantasy-list-item__content h4 {
    margin: 0 0 5px;
    color: #202938;
    font-size: 14px;
    font-weight: 800;
}

.fixture-list-item__content h4 span {
    color: #f05a22;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.fixture-list-item__content p,
.fantasy-list-item__content p {
    margin: 0;
    color: #6f7786;
    font-size: 12px;
    font-weight: 600;
}

.fantasy-list-item > strong {
    color: #f05a22;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.dashboard-list-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    border: 1px dashed #dedde1;
    border-radius: 8px;
    color: #6f7786;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
.breadcrumb-item.active{
    color: #f05a22;
    font-size: 14px;
}
.dashboard-content-wrapper h2{
    color: #f05a22;
    font-size: 1.8rem;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .dashboard-header__nav {
        padding: 16px 28px;
        gap: 20px;
    }

    .dashboard-header .search-container {
        width: min(560px, 48vw);
    }

    .dashboard-header__right {
        gap: 24px;
    }

    .dashboard-header .header-actions {
        gap: 18px;
    }

    .dashboard-header .profile-name {
        min-width: 180px;
    }

    .dashboard-header .profile-name h3 {
        font-size: 26px;
    }

    .dashboard-header .profile-name p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .dashboard-header__nav {
        min-height: auto;
        flex-wrap: wrap;
        padding: 18px;
    }

    .dashboard-header .search-container {
        order: 2;
        width: 100%;
        height: 56px;
        padding-left: 22px;
    }

    .dashboard-header .search-container input {
        font-size: 20px;
    }

    .dashboard-header .search-container button {
        font-size: 22px;
    }

    .dashboard-header__right {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .dashboard-header .header-actions {
        gap: 12px;
    }

    .dashboard-header .icon-button {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .dashboard-header .icon-button [data-lucide],
    .dashboard-header .icon-button svg {
        width: 24px;
        height: 24px;
    }

    .dashboard-header .header-divider {
        display: none;
    }

    .dashboard-header .profile-container {
        gap: 12px;
    }

    .dashboard-header .profile-name {
        min-width: 0;
    }

    .dashboard-header .profile-name h3 {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 20px;
    }

    .dashboard-header .profile-name p {
        font-size: 15px;
    }

    .dashboard-header .profile-avatar {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .dashboard-header .profile-avatar [data-lucide],
    .dashboard-header .profile-avatar svg {
        width: 22px;
        height: 22px;
    }
}
