body, html { 
    margin: 0; 
    padding: 0; 
    height: 100%; 
    font-family: Arial, sans-serif; 
}

#map { 
    height: 100vh; 
    width: 100vw; 
}

.titulo-mapa {
    position: absolute; 
    top: 10px; 
    left: 50px; 
    z-index: 1000;
    background: white; 
    padding: 10px 15px; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); 
    margin: 0;
}

.boton-tour {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    z-index: 1000;
    background: #007bff; 
    color: white; 
    border: none; 
    padding: 10px 15px;
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer; 
    font-weight: bold; 
    font-size: 14px;
}

.boton-tour:hover { 
    background: #0056b3; 
}

.popup-img { 
    max-width: 200px; 
    max-height: 150px; 
    display: block; 
    margin-top: 8px; 
    border-radius: 4px; 
}

.badge { 
    padding: 3px 6px; 
    border-radius: 4px; 
    color: white; 
    font-size: 11px; 
    font-weight: bold; 
}

.badge-pendiente { 
    background-color: #dc3545; 
}

.badge-aprobado { 
    background-color: #198754; 
}
