        /* Specific admin styles to match the screenshot "classic" look */
        body {
            background-color: white;
            font-family: sans-serif;
            font-size: 0.875rem;
        }
        .admin-header {
            text-align: center;
            padding: 20px 0;
            position: relative;
        }
        .admin-title {
            color: #800000;
            font-family: 'Oswald', sans-serif;
            font-weight: bold;
            font-size: 2rem;
            text-transform: uppercase;
        }
        .admin-nav2 {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 0.875rem;
        }
        .sport-heading {
            color: #4c1d95; /* purple-900 */
            font-weight: bold;
            font-size: 1.5rem;
            border-bottom: 4px solid #4c1d95;
            display: inline-block;
            margin-bottom: 20px;
        }
        .admin-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8rem;
            border-top: 1px solid #999;
        }
        .admin-table th {
            position: sticky;
            top: 0;
            background-color: #f3f4f6;
            text-align: center;
            font-weight: bold;
            border-bottom: 2px solid black;
            padding: 8px;
            font-size: 0.85rem;
            z-index: 10;
        }
        .admin-table td {
            border-bottom: 1px solid #ccc;
            padding: 6px 8px;
            vertical-align: middle;
            text-align: center;
            white-space: nowrap;
        }
        .admin-table tr:hover {
            background-color: #f9fafb;
        }
        .input-text {
            border: 1px solid #9ca3af;
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 0.8rem;
            height: 28px;
        }
        .select-box {
            border: 1px solid #9ca3af;
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 0.8rem;
            height: 28px;
            width: 100%;
        }
        .btn-admin {
            border: 1px solid #9ca3af;
            color: black;
            padding: 4px 10px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 0.75rem;
            margin: 0 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 28px;
        }
        .btn-delete {
            background-color: #fee2e2;
            color: #991b1b;
            border-color: #fecaca;
        }
        .btn-delete:hover {
            background-color: #fecaca;
        }
        .btn-update {
            background-color: #dbeafe;
            color: #1e40af;
            border-color: #bfdbfe;
        }
        .btn-update:hover {
            background-color: #bfdbfe;
        }
.btn-add {
    background-color: #d4f7d4; /* soft light green */
    color: #166534;           /* dark green text */
    border: 1px solid #15803d; /* dark green border */
    transition: background-color 0.2s ease;
}

.btn-add:hover {
    background-color: #a7f0a7; /* slightly darker soft green on hover */
}        .center {
            text-align: center;
        }
        .link-blue {
            color: #1e40af;
            text-decoration: underline;
        }

        /* Mobile Menu Styles */
        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 9999;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
        }
        #mobile-menu.menu-open {
            transform: translateX(0);
        }
        #mobile-menu-btn {
            position: absolute;
            left: 20px;
            top: 20px;
            cursor: pointer;
            background: none;
            border: none;
            display: block;
        }
    </style>
