
.panier-wrapper {
    width: 80%;
    margin: 10% auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    border-bottom: 1px solid #e2e2e2;
}

table th {
    background-color: #f1f1f1;
    color: #333;
}

table td {
    color: #555;
}

table tr:last-child td {
    border-bottom: none;
}

button.retirer-btn {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button.retirer-btn:hover {
    background-color: #c9302c;
}

.p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

form button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.total-panier {
    margin-top: 20px;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
    text-align: center;
}

.total-panier p {
    font-size: 1.2rem;
    color: #333;
}

.payer-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.payer-btn:hover {
    background-color: #218838;
}

.payer-btn:active {
    background-color: #1e7e34;
}

@media screen and (max-width: 768px) {
    .panier-wrapper {
        width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    table th, table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .total-panier p {
        font-size: 1rem;
    }

    .payer-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px;
    }
}
