/* Estilos Generales y Reset Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    background-color: #f8f9fa; /* Un gris muy claro */
    color: #333;
 /*   display: flex;*/
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px;
}


.cont-horario {
    display: flex;
    justify-content: center;  /* Centra horizontalmente el .tabmvo-container */
    align-items: center;    /* Centra verticalmente el .tabmvo-container */
    /* Opciones para darle altura y permitir centrado vertical: */
    /* Opción A: Altura mínima de la ventana (menos la navbar si es fija) */
    /* min-height: calc(100vh - 75px);  Ajusta 70px a la altura APROXIMADA de tu navbar */
    /* Opción B: Padding vertical generoso */
     padding: 90px 20px;  /* Ajusta el padding como necesites */
    box-sizing: border-box;
}

/* Contenedor Principal */
.container {
    background-color: #ffffff; /* Blanco */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Sección Horario */
.schedule {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee; /* Separador sutil */
}

.schedule h1 {
    font-size: 1.8em;
    color: #212529; /* Casi negro */
    margin-bottom: 10px;
    font-weight: 600;
}

.schedule p {
    font-size: 1.1em;
    color: #555; /* Gris oscuro */
    margin-bottom: 5px;
}

.schedule .time {
    font-size: 1.3em;
    font-weight: 500;
    color: #007bff; /* Azul distintivo */
}

/* Sección Ubicación */
.location h2 {
    font-size: 1.5em;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Contenedor del Mapa */
#map {
    height: 350px; /* Altura fija para el mapa */
    width: 100%;   /* Ocupa todo el ancho del contenedor */
    border-radius: 6px;
    border: 1px solid #ddd; /* Borde sutil */
}

/* Responsividad Simple */
@media (max-width: 600px) {
    .container {
        padding: 20px 25px;
    }

    .schedule h1 {
        font-size: 1.6em;
    }

    .location h2 {
        font-size: 1.3em;
    }

    #map {
        height: 300px;
    }
}