.map-thumbnail {
    width: 100%;
    height: 150px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.map-thumbnail:hover {
    border-color: #007bff;
}
.map-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    pointer-events: none;
}
.map-thumbnail:hover .map-thumbnail-overlay {
    opacity: 1;
}
.location-section {
    margin-bottom: 2rem;
}
.location-section h4 {
    margin-bottom: 1rem;
    color: #333;
}
.coordinates-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.5rem;
}
.map-thumbnail-view-link {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    color: #007bff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.map-thumbnail-view-link:hover {
    background: #007bff;
    color: #fff;
    text-decoration: none;
}