* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #005289;
    --primary-color-dark: #325481;
    --secondary-color: #fdfb7d;
    --grayscale-100: #ebf1f4;
}

/* Custom styles starts*/

.custom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.custom-btn {
    width: fit-content;
    border-radius: 0;
    background: var(--primary-color-dark);
}

.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active {
    color: #ffffff;
    background: transparent !important;
}

.help-btn {
    padding: 3px 20px;
    border-radius: 0;
    background: rgb(191, 0, 0);
}

.custom-input-group {
    background: var(--grayscale-100);
}

/* custom styles ends */

body {
    font-family: var(--bs-font-sans-serif)
}

#club-select {
    border-radius: 0;
    background: var(--grayscale-100);
    border: 1px solid #fff;
}

.form-control {
    border-radius: 0;
}

.site-header {
    background: #ffffff;
}

.top-logos {
    background: var(--grayscale-100);
    border-bottom: 1px solid #eee;
}

.top-logos a {
    filter: grayscale();
}

.top-logos a:hover {
    filter: none;
}

.hero {
    background: var(--primary-color) !important;
    min-height: 100vh;
}

.hero h2,
.hero h4,
.hero p {
    color: #ffffff;
}

.hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
}

.hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

.select-club {
    font-size: 0.9rem;
    color: #222;
}

.select-club .form-select {
    padding-left: 1rem;
    padding-right: 2.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    height: 40px;
}

.select-club .form-select:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Smaller select for compact header */
.select-club .form-select.form-select-sm {
    height: 36px;
    font-size: .875rem;
}

@media (max-width: 576px) {
    .select-club .form-select {
        min-width: 120px;
    }
}

.site-footer {
    border-top: 1px solid #ddd;
}

.hero a.text-warning {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.main-container {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 767.98px) {
    .main-container {
        padding-top: 20px;
        padding-bottom: 60px;
    }
}

.form-control:focus {
    box-shadow: none;
}