/* Map-specific styles */
.map-container {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Overlay effect for the map */
.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0) 0%, rgba(75, 0, 130, 0.05) 100%);
    pointer-events: none;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 250px;
        margin-top: 20px;
    }
}