/**
 * HDSV Turniertermine Google Maps Styles
 */

/* Map Container */
.hdsv-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

/* Google Map */
.hdsv-google-map {
    width: 100%;
    height: 100%;
}

/* Map Filters */
.hdsv-map-filters {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    z-index: 1;
}

.hdsv-map-filters label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
}

.hdsv-map-filters select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

/* Info Window */
.hdsv-map-info-window {
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.hdsv-map-info-window h3 {
    margin: 0 0 10px;
    color: #1a5276;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.hdsv-map-info-window p {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.4;
}

.hdsv-map-info-window a {
    color: #2980b9;
    text-decoration: none;
}

.hdsv-map-info-window a:hover {
    text-decoration: underline;
}

/* Map Error Message */
.hdsv-map-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.hdsv-map-error a {
    color: #721c24;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .hdsv-map-container {
        height: 400px;
    }
    
    .hdsv-map-filters {
        width: calc(100% - 20px);
        top: auto;
        bottom: 10px;
    }
}