
.woocommerce-MyAccount-content {
    padding-left: 64px;
    padding-right: 64px;
}

.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border: 1px solid #B91F1D;
    border-radius: 33px;
    overflow: hidden;
}

.woocommerce-orders-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: #B91F1D;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.woocommerce-orders-table tbody td,
.woocommerce-orders-table tbody th {
    padding: 1rem 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(75, 85, 99);
    
}

.woocommerce-orders-table tbody tr:hover {
    background-color: rgb(249, 250, 251);
}

.woocommerce-orders-table td a,
.woocommerce-orders-table th a {
    color: rgb(37, 99, 235);
    text-decoration: none;
}

.woocommerce-orders-table td a:hover,
.woocommerce-orders-table th a:hover {
    color: rgb(29, 78, 216);
}

.woocommerce-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.25rem;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.woocommerce-button.pay {
    background-color: #B91F1D;
    color: white;
}

.woocommerce-button.pay:hover {
    background-color: rgb(255, 255, 255);
    color: #B91F1D;
    border: #B91F1D 1px solid;
}

.woocommerce-button.view {
    background-color: #B91F1D;
    color: white;
}

.woocommerce-button.view:hover {
    background-color: rgb(229, 231, 235);
    color: #B91F1D;
}

/* Bouton Annuler */
.woocommerce-button.cancel {
    background-color: rgb(255, 255, 255);
    color: #B91F1D;
    border: #B91F1D 1px solid;
}

.woocommerce-button.cancel:hover {
    background-color: #B91F1D;
    color: white;
}

/* Pour garder les coins arrondis sur le thead */
.woocommerce-orders-table thead tr:first-child th:first-child {
    border-top-left-radius: 33px;
}

.woocommerce-orders-table thead tr:first-child th:last-child {
    border-top-right-radius: 33px;
}

/* Pour garder les coins arrondis sur la dernière ligne */
.woocommerce-orders-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 33px;
}

.woocommerce-orders-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 33px;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-MyAccount-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
    }
}