.contenedor-formulario {
    background: #EFEFEF;
    font-family: 'Inter' !important;
    font-size: 1.1em;
    padding: 2em 15% 2em 15%;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.mt-3 {
    margin-top: 3rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.bold {
    font-weight: 700; 
    color: #3b3b3a;
}

.title {
    color: #f28b00;
}

.sub-title {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 21px;
    color: #05AADD;
}

.text-title {
    font-size: 2rem;
    margin: 2rem 0rem;
}

.discount-table {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 2rem;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.discount-table thead th {
    background-color: #e86d25;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
}

.dark-table thead th {
    background-color: #16365c !important;
}

.discount-table tbody td {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.table-beneficio tbody td {
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
}

.discount-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.discount-table tbody td strong {
    font-weight: bold;
    color: #3b3b3a;
}

.station-table {
    width: 100% !important;
}

.station-table tbody td {
    padding: 10px;
    text-align: left !important;
}

.station-table tbody td:first-child {
    text-align: center !important;
}

.discount-number tbody td:last-child {
    text-align: center !important;
}


.link {
    color: #3b3b3a;
    font-weight: 700; 
    text-decoration: underline;
}

.link:hover, .link:focus {
    color: #3b3b3a;
    font-weight: 700;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #b3c6e7;
    color: #000000;
    text-align: center;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 453px) {
    .contenedor-formulario {
        padding: 1em 1rem;
    }
}

/*TABLA RESPONSIVE*/

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

@media (max-width: 453px) {
    .table-responsive {
        overflow-x: auto;
    }
}