.agent-map {

    #map {
        height: 557px;
        width: 100%;
    }

    .agent-list-container {
        max-height: 400px;
        overflow-y: auto;
        border: 1px solid #ccc;
        padding: 0 !important;
        background-color: #f9f9f9;
        margin-top: 20px;
    }

    .row {
        width: 100%;
    }

    .loading-overlay {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        height: 100%;
        right: 0;
        bottom: 0;
    }

    .spinner {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #c9f269;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;

    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loading-overlay p {
        margin-top: 10px;
        color: white;
        font-size: 18px;
        font-family: Arial, sans-serif;
        font-weight: bold;
    }

    .btn-primary {
        background-color: #c9f269 !important;
        color: #002121 !important;
        border-radius: 8px !important;
        border-color: transparent !important;
    }

    .btn-primary:hover {
        background-color: #78e930 !important;
        color: #fff !important;
        border-radius: 8px;
        border-color: transparent !important;
    }

    .btn-primary:active {
        background-color: #78e930 !important;
        color: #fff !important;
        border-radius: 8px;
        border-color: transparent !important;
    }

    .btn-primary:focus {
        background-color: #c9f269 !important;
        color: #002121 !important;
        border-radius: 8px;
        border-color: transparent;
        box-shadow: 0 0 0 3px rgba(130, 188, 29, 0.6) !important;
    }

    .btn-primary:disabled {
        background-color: #e0e0e0;
        color: #b0b0b0;
        border-radius: 8px;
        border-color: transparent;
        cursor: not-allowed;
    }

    .agent-list-container li:hover {
        background-color: #c9f269;
        cursor: pointer;
    }

    .agent-list-container li {
        padding: 10px;
        margin: 5px 0;
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        border-top: none;
        border-right: none;
        border-left: none;
        transition: background-color 0.3s ease;
    }

    .agent-list-container li:hover {
        background-color: #c9f269;
        cursor: pointer;
    }

    .btn-outline-secondary {
        color: #6c757d;
        border-color: #6c757d;
    }

    .btn-outline-secondary:hover {
        color: #6c757d;
        border-color: #6c757d;
    }

    .btn-outline-secondary:active {
        color: #6c757d;
        border-color: #6c757d;
    }

    .btn-outline-secondary:focus {
        border-color: #6c757d;
        border-color: #6c757d;
    }

    #locationInput {
        height: auto;
    }

    @media (min-width: 1349px) and (max-width: 1649px) {
        .agent-map-section {
            min-width: 1300px !important;
        }
    }
    @media (min-width: 1650px) {
        .agent-map-section {
            min-width: 1600px !important;
        }
    }


}
.pages .list-group-item .form-row .col-1 {
    font-size: 14px !important;
}
.pages .list-group-item .form-row .col-10 {
    font-size: 12px !important;
}
#map-wrapper{
    position: relative;
    background: url('/img/pagaqui/map-loading.png') center center / cover no-repeat;
}
#map-loader{
    position: absolute;
    inset: 0;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}