/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 02:30:37 */
/* ── Blocked Periods Container ── */
.blocked-periods-container {
    margin: 8px 0;
}

/* ── Accordion ── */
.blocked-accordion {
    border-radius: 10px;
    overflow: visible;
}

.blocked-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: #fdf0ee;
    border: 1.5px solid rgba(192, 57, 43, 0.14);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
    transition: background 0.18s;
    user-select: none;
}
.blocked-accordion-summary::-webkit-details-marker { display: none; }
.blocked-accordion-summary:hover { background: #fbe8e5; }

.blocked-acc-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blocked-acc-icon {
    width: 30px;
    height: 30px;
    background: rgba(192, 57, 43, 0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
    flex-shrink: 0;
}
.blocked-acc-label {
    font-size: 13px;
    font-weight: 600;
    color: #8b2e24;
}
.blocked-acc-badge {
    background: rgba(192, 57, 43, 0.14);
    color: #c0392b;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
}
.blocked-acc-arrow {
    color: #c07070;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.blocked-accordion[open] .blocked-acc-arrow {
    transform: rotate(180deg);
}

/* ── Expanded body ── */
.blocked-acc-body {
    margin-top: 8px;
    padding: 2px 2px 0;
}
.blocked-acc-hint {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    padding: 0 2px;
}

/* ── Date list — no scroll ── */
.blocked-date-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blocked-date-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid rgba(192, 57, 43, 0.10);
    border-radius: 8px;
    padding: 10px 12px;
}
.blocked-date-row--hidden {
    display: none;
}
.blocked-date-val {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    flex: 1;
}
.blocked-date-val--right {
    text-align: right;
}
.blocked-date-sep {
    font-size: 11px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.blocked-date-sep::before,
.blocked-date-sep::after {
    content: '';
    display: block;
    height: 1px;
    width: 16px;
    background: #dde6e1;
}

/* ── Show-more button ── */
.blocked-show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: none;
    border: 1.5px dashed rgba(192, 57, 43, 0.22);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #a0352b;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    letter-spacing: 0.02em;
}
.blocked-show-more-btn:hover {
    background: rgba(192, 57, 43, 0.05);
    border-color: rgba(192, 57, 43, 0.38);
}
.blocked-show-more-icon {
    transition: transform 0.3s ease;
}
.blocked-show-more-icon--open {
    transform: rotate(180deg);
}

/* ── All free state ── */
.blocked-periods-free {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #11490f2b;
    border: 1.5px solid rgba(13, 59, 10, 0.12);
    border-radius: 10px;
}
.blocked-free-icon {
    width: 30px;
    height: 30px;
    background: rgba(13, 59, 10, 0.09);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#11490f;
    flex-shrink: 0;
}
.blocked-free-text {
    font-size: 13px;
    font-weight: 500;
    color: #11490f;
    margin: 0;
}