body {
    /* font-family: 'Arial', sans-serif; */
    background: #fff;
    /* color: #1a237e; */
    margin: 0px;
    padding: 0px;
}

/* Main bordered container for the whole page */
.main-bordered-container {
    max-width: 1100px;
    margin: 32px auto;
    /* margin: 30px 0px 0px 0px; */
    /* top   right   bottom   left */

    background: #fff;
    padding: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Strips and logo row grid */
.custom-header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 0;
    position: relative;
    padding: 0;
    justify-items: center;
}

.header-strips-left,
.header-strips-right {
    display: flex;
    align-items: center;
    width: 100%;
}

.header-strips-left {
    justify-content: flex-start;
}

.header-strips-right {
    justify-content: flex-end;
}

.strip-gap {
    width: 6px;
    height: 28px;
    flex-shrink: 0;
}

.bar-long {
    width: 100%;
    max-width: 260px;
    min-width: 120px;
    height: 28px;
}

.bar-short {
    width: 35px;
    height: 25px;
}

.bar-dark {
    background: #1a3770;
}

.bar-medium {
    background: #ff5500;
}

.header-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

.club-logo {
    max-width: 200px;
    max-height: 100px;
    width: 100%;
    display: block;
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 0 !important;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.address-block {
    font-size: 15px;
    color: #1a237e;
    text-align: right;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 2px;
}

.form-title {
    color: #f57c00;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-align: left;
    margin-left: 0;
    margin-top: 0;
}

.section-title {
    display: flex;
    align-items: center;
    color: #1a237e;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    gap: 10px;
}

.section-title-bar {
    flex: 1 1 auto;
    height: 5px;
    background: #f57c00;
    border-radius: 2px;
    margin-left: 10px;
}

label {
    font-size: 0.98rem;
    color: #1a237e;
    font-weight: 500;
    margin-bottom: 2px;
}

input.form-control {
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    font-size: 1rem;
    padding: 6px 10px;
    margin-bottom: 8px;
}

input[type="date"].form-control {
    min-width: 0;
}

.small {
    font-size: 0.85em;
    color: #757575;
    font-weight: 400;
}

.footer-logos {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bar {
    width: 100%;
    height: 6px;
    background: #f57c00;
    border-radius: 2px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.footer-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer-logo {
    max-width: 120px;
    max-height: 80px;
    margin: 0 2px;
    display: inline-block;
}

.header-address-block {
    width: 100%;
    text-align: right;
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 15px;
    color: #1a237e;
    font-weight: bold;
    line-height: 1.2;
    padding-right: 24px;
}

/* Header top row for social icons */
.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2px;
}

.header-top-spacer {
    flex: 1;
}

.header-social-icons {
    display: flex;
    gap: 8px;
    margin-right: 24px;
}

@media (max-width: 1200px) {
    .main-bordered-container {
        max-width: 98vw;
    }

    .bar-long {
        max-width: 180px;
        min-width: 80px;
    }

    .club-logo {
        max-width: 140px;
        max-height: 110px;
    }
}

@media (max-width: 800px) {
    .custom-header-row {
        grid-template-columns: 1fr auto 1fr;
    }

    .bar-long {
        max-width: 80px;
        min-width: 40px;
        height: 18px;
    }

    .bar-short {
        width: 18px;
        height: 18px;
    }

    .strip-gap {
        width: 3px;
        height: 18px;
    }

    .header-logo-center {
        margin: 0 2px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .header-address-block {
        font-size: 12px;
        padding-right: 8px;
    }

    .club-logo {
        max-width: 100px;
        max-height: 65px;
    }

    .footer-logo {
        max-width: 80px;
        max-height: 80px;
    }

    .footer-bar {
        height: 4px;
    }

    .footer-logo-row {
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .main-bordered-container {
        padding: 0 0 12px 0;
    }

    .custom-header-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
        min-height: unset;
    }

    .header-strips-left,
    .header-strips-right {
        width: 100%;
        justify-content: center;
    }

    .header-address-block {
        text-align: center;
        padding-right: 0;
    }

    .form-title {
        margin-left: 0;
        text-align: center;
    }
}