.stewards-report-filter {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

#pdf-report-link {
    margin-bottom: 1rem;
}

.stewards-report-section {
    margin-bottom: 2rem;
}

.stewards-report-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.5rem;
}

.table th,
.table td {
    border: 1px solid #e2e2e2;
    padding: 0.5em 0.75em;
    text-align: center;
    font-size: 0.96em;
}

.table th {
    background: #f4f4f9;
    font-weight: 700;
}

.container-title {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.button:hover,
.button:focus {
    background: #252368;
    color: #fff;
}

.skeleton-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2em 0;
}

.skeleton-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eee;
}

.skeleton-text {
    flex: 1;
}

.skeleton-line {
    height: 12px;
    background: #eee;
    margin: 6px 0;
    border-radius: 6px;
}

.skeleton-line.full-width {
    width: 100%;
}

.skeleton-line.three-quarter-width {
    width: 75%;
}

.skeleton-line.half-width {
    width: 50%;
}

.shimmer {
    animation: shimmer 1.6s infinite linear;
    background: linear-gradient(to right, #eee 8%, #f5f5f5 18%, #eee 33%);
    background-size: 1200px 100%;
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }

    100% {
        background-position: 1200px 0;
    }
}

.empty-state {
    text-align: center;
    margin: 3em 0 2em 0;
}

.empty-state-message {
    color: #c23b3b;
    font-size: 1.2em;
    font-weight: 600;
}