.cabres-act-wrap {
    width: 100%;
    max-width: 680px;
    margin: 30px auto 30px auto;
}

.cabres-act-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 24px;
    box-sizing: border-box;
}

.cabres-act-title {
    margin: 0 0 12px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.cabres-act-description {
    margin-bottom: 20px;
    color: #444444;
    line-height: 1.5;
}

.cabres-act-pricing-summary {
    margin: 0 0 46px 0;
    padding: 12px 14px;
    background: #f7f7f7;
    border-radius: 10px;
    line-height: 1.5;
}

.cabres-act-empty,
.cabres-act-error {
    padding: 14px 16px;
    border-radius: 10px;
    background: #f7f7f7;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cabres-act-slots {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cabres-act-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    background: #f7f6f0;
    box-sizing: border-box;
    flex-wrap: wrap;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.cabres-act-slot:hover {
    background: #efece3;
}

.cabres-act-slot.is-full {
    opacity: 0.7;
}

.cabres-act-slot-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cabres-act-slot-date,
.cabres-act-slot-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cabres-act-slot-date {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.cabres-act-slot-time {
    font-size: 19px;
    line-height: 1.2;
    color: #444444;
}

.cabres-act-slot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    font-size: 17px;
    line-height: 1;
    transform: translateY(-1px);
}

.cabres-act-slot-notes {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

.cabres-act-slot-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.cabres-act-slot-price {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.cabres-act-slot-places {
    font-size: 14px;
}

.cabres-act-badge {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.cabres-act-badge.available {
    background: #e7f7ea;
    color: #22663a;
    border: 1px solid #22663a;
}

.cabres-act-badge.full {
    background: #f9e1e1;
    color: #8f2626;
}

.cabres-act-slot-booking {
    width: 100%;
    margin-top: 4px;
}

.cabres-act-booking-form {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.cabres-act-places-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
}

.cabres-act-places-input {
    width: 65px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    box-sizing: border-box;
}

.cabres-act-book-btn {
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    background: #1f1f1f;
    color: #ffffff;
    transform: translateY(-4px);
}

.cabres-act-book-btn:hover {
    background: #bb890b;
}

.cabres-act-inline-error {
    width: 100%;
    font-size: 14px;
    color: #8f2626;
    font-weight: 700;
}

@media (max-width: 767px) {
    .cabres-act-box {
        padding: 18px;
    }

    .cabres-act-title {
        font-size: 24px;
    }

    .cabres-act-slot {
        flex-direction: column;
        align-items: flex-start;
    }

    .cabres-act-slot-side {
        align-items: flex-start;
    }

    .cabres-act-booking-form {
        align-items: stretch;
    }

    .cabres-act-places-input {
        width: 100%;
    }

    .cabres-act-book-btn {
        width: 100%;
    }

    .cabres-act-slot-icon {
        width: 20px;
        min-width: 20px;
        font-size: 16px;
    }
}



.cabres-act-admin-pending {
    background: #ff9800;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
}