@import url('root.css');

/* ------ TARIFS ------ */

.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.title h1{
    font-size: 36px;
    font-weight: 500;
    color: #1e1e1e;
}

.tag__table{
    font-size: 18px;
    font-weight: 500;
    color: #1e1e1e;
    margin-top: 36px;
}

.title span{
    width: 50px;
    height: 4px;
    border: 10px;
    background-color: #007bff;
}

.tarifs{
    margin-top: 64px;
}

.tarif__more{
    margin-top: 36px;
}

.tarif__more a{
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    transition: .3s;
}

.tarif__more a:hover{
    color: #0056b3;
}

.tarif__more p{
    margin-top: 24px;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}

table {
    margin-top: 8px;
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    color: black;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e0e0e0;
}

@media (max-width: 630px){
    table{
        display: none;
    }

    .tag__table{
        display: none;
    }
}
