﻿/* Gym Request Map Styles */

#map {
    border-radius: 0.375rem 0.375rem 0 0;
    z-index: 1;
}

#addressResults {
    position: relative;
    z-index: 1000;
}

#addressResults .list-group-item {
    cursor: pointer;
    border-left: none;
    border-right: none;
}

#addressResults .list-group-item:first-child {
    border-top: none;
    border-radius: 0.375rem 0.375rem 0 0;
}

#addressResults .list-group-item:last-child {
    border-radius: 0 0 0.375rem 0.375rem;
}

#addressResults .list-group-item:hover {
    background-color: var(--lighter-gray);
}

.leaflet-marker-icon {
    transition: transform 0.1s ease;
}

.leaflet-marker-dragging {
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    #map {
        height: 400px !important;
        margin-bottom: 2rem;
    }
}