/**
 * UVeye Location Finder - Minimal Additional Styles
 */

/* Map container */
#uveye-locations-map {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

/* Map info window */
.map-info-window {
    padding: 10px;
    min-width: 200px;
}

.map-info-window h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.map-info-window p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.map-info-window a {
    display: inline-block;
    margin-top: 10px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

.map-info-window a:hover {
    text-decoration: underline;
}

/* Results count animation */
.find-uveye__search-count {
    transition: all 0.3s ease;
}

/* List filtering animation */
.find-uveye__search-list .location-item {
    transition: opacity 0.3s ease;
}

.find-uveye__search-list .location-item[style*="display: none"] {
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #uveye-locations-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-section .map-wrapper #map {
        height: 21.9375rem;
        width: 22.375rem;
    }
    
    #uveye-locations-map {
        height: 300px;
    }
}