/*
 * Right Panel CSS
 *
 * Styling for the booking box, delivery time and guarantee box in the right panel.
 */

.cpb-right-panel-wrapper {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.cpb-booking-box {
    margin-bottom: 15px;
    text-align: center;
}

.cpb-book-now-button {
    background-color: #ff0050;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    width: 100%;
}

.cpb-delivery-time-box,
.cpb-guarantee-box {
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
}

.cpb-guarantee-box strong {
    display: block;
    margin-bottom: 5px;
    color: #008000;
}

/* Review summary below the booking box */
.cpb-review-summary {
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cpb-review-summary .cpb-review-meta {
    font-weight: 500;
}

/* Last delivery section styling */
.cpb-last-delivery {
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #555;
}