/* ==========================================================
   TABLES.CSS - Tarifs table and data tables
   ========================================================== */

/* ---------------------------------------------------------
   Tarifs table
   --------------------------------------------------------- */
.tarifs-table {
    border: none;
    margin-bottom: 0;
}

.tarifs-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.tarifs-table tbody tr:last-child {
    border-bottom: none;
}

.tarifs-table tbody tr:hover {
    background-color: var(--light-bg);
}

.tarifs-table td {
    padding: 1rem 0.5rem;
    vertical-align: middle;
    border: none;
}

.tarifs-table .service-name {
    font-weight: 600;
    width: 50%;
}

.tarifs-table .service-duration {
    font-size: 0.9rem;
    width: 15%;
    color: #666;
}

.tarifs-table .service-price {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    width: 15%;
}

.tarifs-table .service-action {
    width: 20%;
}
