/* Styles pour l'affichage public de Google Maps */

.google-maps-container {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 400px;
    background-color: #f5f5f5;
}

.google-maps-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    font-size: 16px;
    color: #666;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.google-maps-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ccc;
    border-top: 2px solid #666;
    border-radius: 50%;
    animation: google-maps-spin 1s linear infinite;
}

@keyframes google-maps-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.google-maps-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Styles pour les fenêtres d'information */
.google-maps-info-window {
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
	text-align: center;
}

.google-maps-info-window h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.google-maps-info-window p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.google-maps-info-window strong {
    color: #333;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .google-maps-container {
        margin: 15px 0;
    }
    
    .google-map {
        height: 300px;
    }
    
    .google-maps-loading {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .google-maps-info-window {
        max-width: 250px;
    }
    
    .google-maps-info-window h3 {
        font-size: 16px;
    }
    
    .google-maps-info-window p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .google-map {
        height: 250px;
    }
    
    .google-maps-info-window {
        max-width: 200px;
    }
}

/* Styles pour les contrôles de la carte */
.gm-style .gm-style-iw-c {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, white 50%, transparent 50%);
}

/* Animation d'apparition */
.google-maps-container {
    opacity: 0;
    animation: google-maps-fade-in 0.5s ease-in-out forwards;
}

@keyframes google-maps-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


















.google-maps-container {
    margin: 20px 0;
}

.google-map {
    border: 1px solid #ccc;
}

.google-maps-loading {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.google-maps-error {
    color: #d00;
    padding: 10px;
    background: #ffe6e6;
    border: 1px solid #d00;
}

/* Styles pour la liste d'adresses */
.google-maps-address-list {
    margin-bottom: 20px;
    padding: 15px;
    background: transparent;
}

.google-maps-address-list h3 {
    margin-top: 0;
    color:#25B1CD;
	text-align: center;
}

.address-list-loading {
    text-align: center;
    padding: 10px;
    color: #666;
}

.address-zone-header {
    margin: 15px 0 10px 0;
    padding-bottom: 5px;
    color: #0073aa;
	color: #25B1CD;
    font-weight: bold;
    text-align: center;
}

.address-zone-group {
    margin-bottom: 15px;
	margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.address-item {
    padding: 12px;
    margin: 8px 0;
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-item:hover {
    background: #f0f8ff;
    border-color: #0073aa;
    transform: translateX(5px);
}

.address-item.active {
    background: #0073aa;
    color: white;
    border-color: #005a87;
}

.address-item.active .address-text,
.address-item.active .address-description {
    color: white;
}

.address-item strong{
	color:#25B1CD;
}

.address-text {
    color: #666;
    font-size: 14px;
}

.address-description {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .google-maps-address-list {
        margin-bottom: 15px;
    }
    
    .address-item {
        padding: 10px;
        margin: 5px 0;
    }
}

.google-maps-info-window {
    max-width: 250px;
}

.google-maps-info-window h3 {
    margin: 0 0 10px 0;
    color: #0073aa;
}

.google-maps-info-window p {
    margin: 5px 0;
    color: #666;
}

.show-all-markers-btn{
    display: block;
    margin: 15px auto;
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
