/* Stili per il form di prenotazione */
#piero-booking-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#piero-booking-form label {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
}

#piero-booking-form input[type="text"],
#piero-booking-form select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    height: 40px;
    box-sizing: border-box;
}

#piero-booking-form input[type="text"]:focus,
#piero-booking-form select:focus {
    border-color: #007bff;
    outline: none;
}

#piero-booking-form small,
#piero-booking-form p.timezone-info {
    display: none !important;
}

.piero-error {
    display: none;
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

body.piero-booking-product .single_add_to_cart_button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

body.piero-booking-product .single_add_to_cart_button:hover {
    background-color: #0056b3;
}

/* Nuovi stili per gli avvisi nel carrello e nel checkout */
.booking-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #856404;
    border-radius: 5px;
}

/* Stili per evidenziare l'importo del deposito */
.booking-deposit {
    font-weight: bold;
    color: #d9534f;
}

/* Stili per i dati nel carrello */
.cart-item-data {
    margin-bottom: 10px;
}

.cart-item-data .name {
    font-weight: bold;
}

.cart-item-data .value {
    margin-left: 10px;
}

/* Stile base calendario */
.piero-calendar {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.piero-calendar td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    font-size: 16px;
}

.piero-calendar td.booked {
    background-color: #ff6666;
    color: white;
    cursor: pointer;
}

.piero-calendar td.booked:hover {
    background-color: #ff9999;
}

/* Firma */
#piero-booking-signature {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
    display: block;
}
