/* @override@ */
.table>:not(caption)>*>* {
    background-color:transparent;
    color: white;
    border-bottom: none;
}

.mytable thead {
    border-bottom:1px solid rgba(255, 255, 255, 0.15);
    padding-bottom:2rem;
}

.mytable thead tr th {
    padding-bottom:2rem;
}

.mytable thead th  {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    font-size:1.8rem;
}

.my-td-head  {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size:1.8rem;
}

.mytable tbody {
    font-size:1.4rem;
    width:100%;
}

.mytable-tr-product-first td {
    padding-top:4rem;
    padding-bottom:2rem;
}

.mytable-tr-product td {
    padding-top:2rem;
    padding-bottom:2rem;
}

.table-striped-custom tbody tr:nth-child(odd) {
    background-color: #2b2b2b;
}

.table-striped-custom tbody tr:nth-child(even) {
    background-color: black;
}

.table-striped-custom tbody tr:hover {
    background-color: #3d3e3e;
    transition: background-color 0.2s ease-in-out;
}

/* Styles pour la table des commandes */
.table-responsive {
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-striped-custom {
    margin-bottom: 0;
}

.table-striped-custom thead th {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1rem;
    font-weight: 500;
}

.table-striped-custom tbody td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
}

.btn-order-list {
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.btn-order-list:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Styles responsives */
@media (max-width: 768px) {
    .table-responsive {
        border: none;
    }
    
    .table-striped-custom thead th,
    .table-striped-custom tbody td {
        padding: 0.8rem 0.5rem;
    }
    
    .table-commande.fs-14 {
        font-size: 1.1rem;
    }
    
    .btn-order-list {
        padding: 0.4rem 0.8rem !important;
    }
    
    .btn-order-list i {
        margin-right: 0.3rem;
    }
}



/* Style de tables pour les pages de conditions */
.table-conditions {
    width: 100%;
}
