.athletics-wrapper .vertical-tabs {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.athletics-wrapper .vertical-tabs.mobile {
    grid-template-columns: 1fr;
}

.athletics-wrapper .tab-panels {
    min-height: 200px;
}

.athletics-wrapper .tab-content {
    display: none;
}

.athletics-wrapper .tab-content.active {
    display: block;
}

.athletics-wrapper .stacked-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.athletics-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.athletics-wrapper .form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #4b5563;
}

.athletics-wrapper .text-input {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    width: 100%;
}

.athletics-wrapper .text-input:focus {
    border-color: #00a3ff;
    box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.25);
}

.athletics-wrapper .link-out {
    color: #00a3ff;
    font-size: 13px;
    text-decoration: underline;
    margin-bottom: 6px;
    display: inline-block;
}

.athletics-wrapper .table-responsive {
    width: 100%;
    overflow-x: auto;
}

.athletics-wrapper .stats-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

.athletics-wrapper .stats-table th,
.athletics-wrapper .stats-table td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #0f172a;
}

.athletics-wrapper .stats-table th {
    background: #f8fafc;
    font-weight: 600;
}

.athletics-wrapper .muted-text {
    color: #6b7280;
    font-size: 13px;
    margin: 4px 0;
}

.athletics-wrapper .desktop-only {
    display: block;
}

.athletics-wrapper .mobile-only {
    display: none;
}

@media (max-width: 960px) {

    .athletics-wrapper .desktop-only {
        display: none;
    }

    .athletics-wrapper .mobile-only {
        display: block;
    }

    .athletics-wrapper .vertical-tabs {
        grid-template-columns: 1fr;
    }

    .athletics-wrapper .stacked-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .athletics-wrapper .stats-table {
        min-width: 320px;
    }
}

