/* Style général pour le corps */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9ecec;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #ffe4b5;
    text-align: center;
    padding: 1rem 0;
}

header .logo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
}

/* Table */
.table {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
    vertical-align: middle;
}

.panier-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

/* Boutons */
.btn {
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
}

/* Pied de page */
footer {
    background-color: #ffe4b5;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    header .logo {
        max-height: 200px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .panier-img {
        width: 60px;
        height: 60px;
    }
}

/* Cacher les éléments */
.hidden {
    display: none;
}
