﻿/* Estilos generales del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Contenedor del contenido del modal */
.modal-contenido {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    max-width: 600px;
    margin: 15% auto;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Botón de cerrar */
.cerrar {
    color: red;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Estilo del botón */
.btn-modal {
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

/* Estilo de los selectores de estación */
/* Contenedor de estaciones */
.estaciones {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar el contenido */
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #f0f8ff; /* Azul claro */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 255, 0.2);
    max-width: 300px;
    margin: 20px auto; /* Centrado en la página */
}

/* Estaciones individuales */
.estacion {
    font-size: larger; /* Fuente más grande */
    color: #007bff; /* Azul */
    font-weight: bold;
    text-decoration: underline; /* Subrayado */
    padding: 10px 15px;
    background: white;
    border: 2px solid #007bff;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

    /* Efecto hover */
    .estacion:hover {
        background: #007bff;
        color: white;
        text-decoration: none;
        transform: scale(1.05); /* Efecto de agrandamiento al pasar el mouse */
    }
