/* ================================================
   ALL MATCHES PAGE - PREMIUM WHITE-BLUE DESIGN
   Specialized styles for all matches listing
   ================================================ */

/* Header */
.dashboard-wrapper,
.main-content-dashboard {
    background: linear-gradient(180deg, #eaf6ff 0%, #dff1ff 45%, #f4fbff 100%);
}

.dashboard-header {
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.28) 0%, rgba(15, 39, 68, 0.20) 55%, rgba(10, 22, 40, 0.34) 100%),
        url("../images/Jembatan Barelang.png"),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--blue-primary) 100%);
    background-size: cover, 106%, cover;
    background-position: center, 26% 54%, center;
    background-repeat: no-repeat;
    padding: 72px 50px 96px;
    min-height: 360px;
    text-align: left;
    color: white;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.18) 0%, rgba(10, 22, 40, 0.30) 100%),
        linear-gradient(110deg, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0.46) 50%, rgba(255, 255, 255, 0) 67%);
    background-size: auto, auto, 220% 100%;
    background-position: center, center, -160% 0;
    opacity: 1;
    pointer-events: none;
    animation: barelangReveal 4.4s ease-in-out infinite alternate, barelangShimmer 6.2s linear infinite;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.dashboard-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 780px;
}

.header-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 10px rgba(10, 22, 40, 0.55);
}

.dashboard-header h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 6px 22px rgba(10, 22, 40, 0.55);
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.93);
    font-size: 14px;
    line-height: 1.6;
    max-width: 560px;
    text-shadow: 0 3px 14px rgba(10, 22, 40, 0.5);
}

/* Dashboard Body */
.dashboard-body {
    padding: 0 50px 50px;
    flex: 1;
}

/* ================================================
   FILTER CARD
   ================================================ */
.filter-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: -50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    position: relative;
    isolation: isolate;
}

.filter-card:hover {
    transform: translateY(-3px);
    border-color: #9fcbff;
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.14);
}

.filter-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 11px;
    color: var(--gray-500);
}

.filter-label i {
    color: var(--blue-primary);
}

.filter-select-shell {
    position: relative;
    width: 100%;
    min-width: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(255, 255, 255, 0.98));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.filter-select-shell::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(235, 245, 255, 0.99));
    pointer-events: none;
}

.filter-select-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(59, 130, 246, 0.18);
    pointer-events: none;
}

.filter-select-shell:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.18);
}

.filter-select-shell:hover .filter-select-icon {
    color: #1d4ed8;
    transform: translateY(-50%) rotate(180deg);
}

.filter-select {
    width: 100%;
    min-width: 220px;
    padding: 13px 42px 13px 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.86), rgba(255, 255, 255, 0.96));
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #12346b;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
    cursor: pointer;
}

.filter-select:hover {
    border-color: rgba(37, 99, 235, 0.1);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.22);
    transform: translateY(-1px);
}

.filter-select:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
    color: #0f2f68;
}

.filter-select option {
    background: #eff6ff;
    color: #16356f;
    font-weight: 700;
}

.filter-select option:checked {
    background: #dbeafe;
    color: #12346b;
}

.filter-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    pointer-events: none;
    z-index: 2;
    transition: color var(--transition-fast), transform var(--transition-fast);
    text-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

.filter-actions-new {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    align-self: flex-end;
}

.btn-filter-apply,
.btn-filter-reset {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), background var(--transition-normal);
}

.btn-filter-apply::before,
.btn-filter-reset::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 42%;
    height: 300%;
    transform: rotate(22deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.btn-filter-apply {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: #3b2200;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.24);
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.4), 0 0 22px rgba(250, 204, 21, 0.38);
    filter: saturate(1.05);
}

.btn-filter-apply:hover::before {
    opacity: 1;
    animation: filterShine 1.25s ease;
}

.btn-filter-reset {
    background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    color: #eff6ff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-filter-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34), 0 0 22px rgba(56, 189, 248, 0.32);
    filter: saturate(1.06);
}

.btn-filter-reset:hover::before {
    opacity: 1;
    animation: filterShine 1.25s ease;
}

.btn-filter-apply:focus-visible,
.btn-filter-reset:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.82), 0 0 0 7px rgba(37, 99, 235, 0.2);
}

.btn-filter-apply:active,
.btn-filter-reset:active {
    transform: translateY(0);
}

/* ================================================
   TABLE
   ================================================ */
.table-container-new {
    margin-top: 28px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    isolation: isolate;
}

.table-container-new:hover {
    transform: translateY(-3px);
    border-color: var(--blue-primary);
    box-shadow: 0 18px 34px rgba(30, 64, 175, 0.15);
}

.table-container-new.is-empty:hover {
    transform: none;
    border-color: var(--gray-100);
    box-shadow: var(--shadow-lg);
}

.table-container-new.is-empty {
    padding: 36px;
    margin-top: 22px;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
}

.table-container-new.is-empty .empty-state {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.matches-table {
    width: 100%;
    border-collapse: collapse;
}

.matches-table thead tr {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.matches-table th {
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    padding: 18px 16px;
    text-align: center;
    white-space: nowrap;
}

.matches-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 14px;
    transition: background var(--transition-fast);
    vertical-align: middle;
}

.match-row {
    cursor: pointer;
}

.matches-table tbody tr:hover {
    background: linear-gradient(90deg, var(--white-blue) 0%, var(--white) 100%);
}

.matches-table tbody tr:last-child td {
    border-bottom: none;
}

/* Column widths */
.col-no { width: 60px; text-align: center; }
.col-match { min-width: 260px; }
.col-score { width: 140px; }
.col-datetime { width: 180px; }
.col-venue { width: 200px; }
.col-event { width: 140px; min-width: 140px; }
.col-action { width: 120px; text-align: center; }

/* Match teams */
.match-number {
    text-align: center;
    font-weight: 700;
    color: var(--gray-500);
}

.match-teams-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.team-logo-wrapper {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-sm {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--gray-200);
    padding: 3px;
    background-color: var(--white);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.team-logo-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-200);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.match-row:hover .team-logo-sm {
    transform: scale(1.05);
    border-color: var(--blue-accent);
}

.team-name-sm {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.vs-sm {
    color: var(--blue-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0 6px;
    flex-shrink: 0;
}

/* Score cell */
.match-score-cell {
    text-align: center;
}

.score-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.score-penalty-info {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 6px;
    white-space: nowrap;
}

.score-separator {
    color: var(--blue-accent);
}

.match-status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.match-status-badge.completed {
    background: linear-gradient(135deg, #059669 0%, var(--green) 100%);
    color: white;
}

.match-status-badge.scheduled {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
}

/* Date time cell */
.datetime-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-info {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
}

/* Venue cell */
.venue-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray-600);
}

.venue-info i {
    color: var(--blue-accent);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-text {
    word-wrap: break-word;
    max-width: 180px;
}

/* Event cell */
.event-badge {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    background: var(--white-blue);
    color: var(--navy);
    padding: 6px 10px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 118px;
    width: fit-content;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    box-sizing: border-box;
}

/* Actions cell */
.match-actions-cell {
    text-align: center;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 91, 184, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-top: 28px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    isolation: isolate;
}

.empty-state.empty-state-box {
    padding: 28px 16px;
    border: 2px dashed #2f2f2f;
    box-shadow: none;
    background: #fff;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.empty-state:hover {
    transform: none;
    box-shadow: none;
}

.empty-state.empty-state-box:hover {
    border-color: #2f2f2f;
}

.empty-state i {
    font-size: 32px;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.empty-state h3 {
    color: var(--gray-600);
    font-weight: 700;
    margin-bottom: 6px;
}

.empty-state p {
    color: var(--gray-400);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    gap: 16px;
    flex-wrap: wrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    isolation: isolate;
}

.pagination-wrapper:hover {
    transform: translateY(-2px);
    border-color: var(--blue-primary);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.12);
}

.pagination-info {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
}

.pagination-nav {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.pagination-link:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.pagination-link.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 100%);
    color: white;
    border-color: transparent;
}

/* Decorative hover ring like other public pages */
.filter-card::after,
.table-container-new::after,
.pagination-wrapper::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(147, 197, 253, 0.22));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: -1;
}

.filter-card:hover::after,
.table-container-new:hover::after,
.pagination-wrapper:hover::after {
    opacity: 1;
}

.table-container-new.is-empty::after,
.table-container-new.is-empty:hover::after {
    opacity: 0;
}

.entries-per-page {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
}

.entries-select {
    padding: 8px 12px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-700);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Footer */
.dashboard-footer {
    text-align: center;
    padding: 32px 50px;
    color: var(--gray-500);
    font-size: 14px;
}

.dashboard-footer p {
    margin: 6px 0;
}

.dashboard-footer a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.dashboard-footer a:hover {
    color: var(--blue-accent);
}

/* Animations */
.filter-card,
.table-container-new,
.empty-state,
.pagination-wrapper {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes filterShine {
    0% {
        left: -40%;
    }

    100% {
        left: 130%;
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .dashboard-header {
        padding: 60px 30px 80px;
        background-size: cover, 106%, cover;
        background-position: center, 28% 56%, center;
    }

    .dashboard-body {
        padding: 0 30px 40px;
    }
}

@media (max-width: 992px) {
    .dashboard-header {
        padding: 44px 16px 64px;
        min-height: 360px;
        background-size: cover, 146%, cover;
        background-position: center, 34% 62%, center;
    }

    .filter-card {
        margin-top: -50px;
        padding: 22px;
    }

    .dashboard-body {
        padding: 0 16px 32px;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: 100%;
    }

    .filter-select-shell,
    .filter-select {
        min-width: 100%;
    }

    .filter-actions-new {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        width: 100%;
        justify-content: center;
        min-height: 46px;
    }

    .table-container-new {
        background: transparent;
        box-shadow: none;
    }

    .table-container-new.is-empty {
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: 20px;
        border: 1px solid var(--gray-100);
    }

    .matches-table thead {
        display: none;
    }

    .matches-table,
    .matches-table tbody,
    .matches-table tr,
    .matches-table td {
        display: block;
        width: 100%;
    }

    .matches-table tr {
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
        margin-bottom: 16px;
        overflow: hidden;
    }

    .matches-table td {
        padding: 14px 16px;
        border-bottom: 1px solid var(--gray-100);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: left;
    }

    .matches-table td::before {
        content: attr(data-label);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--gray-500);
        font-weight: 700;
        flex: 0 0 110px;
    }

    .matches-table td:last-child {
        border-bottom: none;
    }

    .match-number {
        display: none;
    }

    .match-teams-cell {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 8px !important;
        padding-bottom: 10px !important;
    }

    .match-teams-cell::before {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 0;
    }

    .match-teams-info {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: -70px;
    }

    .team-info {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .team-logo-wrapper {
        width: 52px;
        height: 52px;
    }

    .team-name-sm {
        max-width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 14px;
        line-height: 1.2;
    }

    .vs-sm {
        padding: 0;
        font-size: 13px;
    }

    .match-score-cell {
        align-items: center;
    }

    .score-info {
        font-size: 18px;
    }

    .match-actions-cell .btn-view {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .pagination-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .pagination-nav {
        justify-content: center;
    }

    .entries-per-page {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dashboard-header {
        padding: 44px 16px 64px;
        min-height: 360px;
        background-size: cover, 146%, cover;
        background-position: center, 34% 62%, center;
    }

    .filter-card {
        margin-top: -50px;
        padding: 16px;
    }

    .dashboard-body {
        padding: 0 12px 24px;
    }

    .matches-table td::before {
        flex: 0 0 90px;
    }

    .pagination-link {
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-header {
        animation: none !important;
        background-size: cover, 106%, cover;
        background-position: center, 26% 54%, center;
    }

    .dashboard-header::before {
        animation: none !important;
        opacity: 0.1;
    }

    .filter-card,
    .table-container-new,
    .empty-state,
    .pagination-wrapper {
        transition: none !important;
        transform: none !important;
    }
}

@media (min-width: 768px) {
    .dashboard-header h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .header-subtitle {
        font-size: 15px;
    }
}

@keyframes barelangReveal {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.10;
    }
}

@keyframes barelangShimmer {
    0% {
        background-position: center, center, -130% 0;
    }

    100% {
        background-position: center, center, 145% 0;
    }
}
