/* styles-offres.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5eded;
    color: #432d2d;
}

.logo {
    height: 50px;
}

.user-panel {
    display: flex;
    align-items: center;
    gap: 5px;
}

main {
    padding: 20px;
    text-align: center;
}

.offres-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Permet aux cartes de se mettre sous la ligne quand l'espace est limité */
}

.offre-card {
    text-align: center;
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 6px;
    width: 100%;
    padding: 15px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /* Ajout d'un espace sous chaque carte pour qu'elles ne collent pas les unes aux autres */
}

.offre-card h3 {
    margin-left: auto;
    background-color: #5d3c3c;
    color: white;
    padding: 5px;
    margin: 0 -15px 10px -15px;
    text-align: center;
}


.price {
    font-size: 1.5em;
    color: #5d3c3c;
    margin-bottom: 10px;
}

.details {

    margin-bottom: 10px;
}

button {
    padding: 5px 10px;
    background-color: lightgray;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button.commander {
    background-color: #d2f0d2;
    font-weight: bold;
}

.unavailable {
    color: red;
    font-weight: bold;
    font-size: 0.9em;
}