#s-rutas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
    gap: 30px;
}

#content-info-rutas {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow2);
    border-radius: 3px;
    overflow: hidden;
    background: white;
    border: 8px solid #F1F1F1;
}

table {
    width: 100%;
    background-color: #DDDDDD;
}

th {
    background-color: var(--verde);
    color: white;
    padding: 12px;
    text-align: left;
}

th.col-horario, th.col-precio {
    text-align: center;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

td.price {
    font-weight: bold;
    color: var(--gris-oscuro);
    text-align: center;
}

.section-title {
    background-color: var(--rojo);
    color: white;
    font-weight: bold;
    text-align: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px;
    width: 50px;
    vertical-align: middle;
}

thead th {
    text-align: center;
}

tbody td {
    text-align: center;
}

tbody tr:nth-child(even){
    background-color: #fff;
}

thead tr th:nth-child(2){
    background-color: #68777C;
}


@media screen and (max-width: 1024px) {
    #s-rutas {
        padding: 20px;
    }

    #content-info-rutas {
        width: 100%;
    }
}