/* Google Maps Styling for DaktarBabu */

/* Hospital Map Container */
#hospital-map {
    height: 400px;
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Doctor Location Map */
.doctor-location-map {
    height: 300px;
    width: 100%;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

/* Map Info Window */
.map-info-window {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 10px;
    max-width: 250px;
}

.map-info-window h5 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
    color: #212529;
}

.map-info-window p {
    margin-bottom: 5px;
    color: #495057;
}

.map-info-window .btn-directions {
    margin-top: 8px;
    display: inline-block;
    padding: 4px 10px;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background-color 0.15s ease-in-out;
}

.map-info-window .btn-directions:hover {
    background-color: #0b5ed7;
}

/* Map Controls */
.map-controls {
    margin-bottom: 1rem;
}

.map-controls .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Map markers */
.map-marker-label {
    color: white;
    background-color: #0d6efd;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hospital-map {
        height: 300px;
    }
    
    .doctor-location-map {
        height: 250px;
    }
}