﻿#mapDiv {
    width: 100%;
    height: 750px;
    border-radius: var(--bs-border-radius, 0.313rem);
    box-shadow: var(--shadow);
}

.fixtures-filter-tabs .custom-tabs {
    padding: 1rem;
    background-color: var(--skobeloff-hex, #006e69);
    border-radius: var(--radius, 0.313rem);
    overflow: hidden;
    box-shadow: var(--footer-shadow);
}

    .fixtures-filter-tabs .custom-tabs .nav-link {
        color: var(--white-hex, #ffffff);
        border: none;
        padding: 15px 25px;
        transition: all 0.3s ease;
    }

        .fixtures-filter-tabs .custom-tabs .nav-link.active {
            color: var(--white-hex, #ffffff);
            background-color: var(--navy-hex, #00313f);
            box-shadow: 0 4px 6px rgba(var(--skobeloff-rgb, 0, 110, 105), 0.3);
        }

.fixtures-filter-row {
    position: relative;
}

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

    .fixtures-filter-row .custom-dropdown {
        background: var(--white-hex, #ffffff);
        box-sizing: border-box;
        max-height: 260px;
        overflow-y: auto;
        position: absolute;
        z-index: 99;
        width: 300px;
        border: 1px solid var(--light-hex, #e3e3e3);
        border-radius: var(--radius, 0.313rem);
        box-shadow: var(--shadow);
        margin-top: -12px;
    }

        .fixtures-filter-row .custom-dropdown > div {
            margin-top: 5px;
            margin-bottom: 5px;
            color: var(--navy-hex, #00313f);
        }

            .fixtures-filter-row .custom-dropdown > div i {
                font-size: 1.2rem;
                font-weight: 700;
                color: var(--skobeloff-hex, #006e69);
            }

            .fixtures-filter-row .custom-dropdown > div:hover {
                background-color: var(--teal-bg-subtle, #def9f9);
            }

                .fixtures-filter-row .custom-dropdown > div:hover label {
                    cursor: pointer;
                }


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

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

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


.div-result {
    margin-bottom: 3rem;
}

    .div-result .fixture-loading {
        display: inline-block;
        margin-bottom: 10px;
    }

.club-fixtures-item {
    max-height: 800px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-color: var(--skobeloff-hex, #006e69) rgba(var(--teal-rgb, 46, 181, 178), 0.3);
    padding: 5px;
    border-radius: var(--radius, 0.313rem);
}

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

.filter-container {
    background-color: var(--light-hex, #e3e3e3);
    border-radius: var(--radius, 0.313rem);
    box-shadow: var(--card-shadow);
}