/**
 * Interactive Map Dublin Default Styles
 * Styles for the Dublin-focused map enhancements
 */

/* Enhanced reset button styling */
#reset-filters {
    transition: all 0.3s ease;
}

#reset-filters:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Map loading indicator */
.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.map-loading::after {
    content: 'Loading Dublin trails...';
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Dublin indicator */
.dublin-indicator {
    display: inline-block;
    background-color: #2196F3;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 500;
}

/* Enhanced county filter when Dublin is selected */
#county-filter option[value="dublin"] {
    font-weight: bold;
}

/* Visual feedback when filters are active */
.map-controls select:not([value=""]) {
    border-color: #2196F3;
    background-color: #E3F2FD;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #reset-map-filters {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
    
    .map-controls {
        flex-direction: column;
    }
    
    .map-control-group {
        width: 100%;
    }
}