.panier-conteneur {
    padding: 100px;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}


.panier {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center; 
    align-items: flex-start; 
}

.monteur-item {
    width: calc(50% - 10px);
    max-width: 800px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.panier-conteneur > p {
    font-size: 1.5em;
    color: #666;
    text-align: center;
    margin-top: 20px;
}


.monteur-info {
    text-align: center;
}

.monteur-info h2 {
    margin-bottom: 10px;
}

.monteur-image {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.monteur-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.tarif {
    font-weight: bold;
}

.btn-supprimer, .btn-reserver {
    padding: 8px 12px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-reserver {
    background-color: #4CAF50;
    margin-left: 10px;
}

.btn-supprimer:hover, .btn-reserver:hover {
    opacity: 0.8;
}




footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #aaa;
}