
#sb-timeline #steps #steps-content #sb_booking_content .datetime-step #sb_dateview_container {
 
    background-color: #fbfbef;
}
/* ✅ MISE EN PAGE DES SERVICES */
#sb-timeline #steps #steps-content .step-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    box-sizing: border-box;
}

/* ✅ TAILLE DES CARTES DE SERVICE */
.item.service-item {
    box-sizing: border-box;
    flex: 0 0 calc(33.33% - 15px);
    margin-bottom: 15px;
}

/* ✅ CARTE (fond , apparence globale) */
.item__tab {
    background-color: #FBFBEF!important;
    border: 1px solid #39352F !important;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ✅ Éléments internes sans fond */
.item__content,
.item__description,
.item__info-bar,
.item__picture-wrapper,
.item__picture {
    background-color: transparent !important;
}

/* ✅ SUPPRIMER LE FOND DU FOOTER */
.item__footer {
    background-color: transparent !important;
    text-align: center;
}

/* ✅ STYLE DU BOUTON */
.item__footer .btn.select,
.item__footer .btn.select a {
    background-color: #39352F !important;
    color: #FBFBEF !important;
    border-radius: 6px;
    padding: 12px 20px;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    border: none;
    transition: background 0.3s ease;
}

/* ✅ HOVER BOUTON */
.item__footer .btn.select:hover,
.item__footer .btn.select a:hover {
    background-color: #b34727 !important;
    color: #ffffff !important;
}

/* ✅ FOND DES IMAGES */
.item__picture img {
    background: none !important;
}

/* ✅ RESPONSIVE MOBILE : 1 service par ligne */
@media screen and (max-width: 768px) {
    .item.service-item {
        flex: 0 0 100%;
    }
}

/* ✅ RESPONSIVE TABLETTE : 2 services par ligne */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .item.service-item {
        flex: 0 0 calc(50% - 15px);
    }
}
