﻿.search-container {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.search-icon {
    position: absolute;
    color: var(--skobeloff-hex, #006e69);
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.form-control.search-input {
    padding-left: 30px;
}

.club-search label {
    color: var(--skobeloff-hex, #006e69);
}

.club-search select, input {
    border-color: rgba(var(--grey-rgb, 117, 117, 117), 0.3) !important;
}

.club-search .filter-container {
    background: var(--light-hex, #e3e3e3);
    border-radius: var(--radius, 0.313rem);
    box-shadow: var(--card-shadow, rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px);
}

.club-search .result-container {
    margin-top: 3rem;
}

    .club-search .result-container .club-list {
        max-height: 800px;
        overflow-y: scroll;
        scrollbar-color: var(--skobeloff-hex, #006e69) rgba(var(--teal-rgb, 46, 181, 178), 0.3);
        padding: 5px 5px 5px 0px;
        margin-bottom: 40px;
        border-radius: var(--radius, 0.313rem);
    }

.club-search .card {
    margin-bottom: 20px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--skobeloff-hex, #006e69);
    border-radius: var(--radius, 0.313rem);
}

.club-search .card-header {
    color: var(--skobeloff-hex, #006e69);
    font-weight: 700;
    background-color: var(--white-hex, #ffffff);
    padding: 16px 20px;
    border-bottom-color: var(--light-hex, #e3e3e3);
    border-top-left-radius: var(--radius, 0.313rem);
    border-top-right-radius: var(--radius, 0.313rem);
}

.club-search .card .card-body {
    background-color: var(--white-hex, #ffffff);
    border-bottom-left-radius: var(--radius, 0.313rem);
    border-bottom-right-radius: var(--radius, 0.313rem);
}

    .club-search .card .card-body label {
        font-size: 0.8rem;
        color: rgba(var(--grey-rgb, 117, 117, 117), 0.7);
    }

.map-wrapper {
    display: block;
    width: 100%;
    height: 875px;
    border-radius: var(--radius, 0.313rem);
}