/* Stili specifici per il calendario in details-calendar */
.details-calendar {
    width: 35%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
        padding: 1.5rem;
        border-radius: .5rem;
        box-shadow: 0 4px 16px 1px rgba(0, 0, 0, .15);
        border: 1px solid var(--viator-color-neutral-80);

    text-align: left;
}

.special-offer {
    background: #d9534f;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.price-info {
    font-size: 22px;
    font-weight: bold;
    margin: 5px 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.discount {
    color: #d9534f;
    font-weight: bold;
}

.price-guarantee {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 0px;
    display: block;
}

.booking-section {
    width: 100%;
}

.booking-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.booking-input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.booking-button {
    width: 100%;
    background: #2d7a54;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.booking-button:hover {
    background: #256646;
}

.booking-info {
    background: #e6f7eb;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.booking-info p {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.booking-info i {
    color: green;
    margin-right: 5px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .details-calendar {
        width: 90%;
    }
    .booking-info {
        align-items: flex-start;
    }
}
