.bh-calendar-wrapper {
    margin: 1.5em 0;
}

.bh-stay-options {
    margin-bottom: 1em;
    background: #f6fbf5;
    border: 1px solid #dce8d8;
    padding: 12px;
    border-radius: 6px;
}

.bh-stay-options-title {
    margin: 0 0 8px;
    color: #1f6f2b;
    font-weight: 700;
}

.bh-stay-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.bh-stay-option {
    border-radius: 4px;
    padding: 10px;
    color: #0c2d14;
}

.bh-stay-option-week {
    background: linear-gradient(135deg, #1f7a2f, #2f9d58);
    color: #fff;
}

.bh-stay-option-midweek {
    background: linear-gradient(135deg, #2ea043, #4fb65f);
    color: #fff;
}

.bh-stay-option-weekend {
    background: linear-gradient(135deg, #65c46a, #7ad27f);
}

.bh-stay-option-label {
    font-weight: 700;
}

.bh-stay-option-days {
    font-size: 0.95em;
}

.bh-stay-note {
    margin: 8px 0 0;
    color: #2b5a32;
    font-size: 0.95em;
}

.bh-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
    gap: 1em;
}

.bh-calendar-error {
    color: #b32d2e;
    font-weight: 600;
    text-align: center;
}

.bh-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25em;
}

.bh-calendar-month-title {
    font-weight: 700;
    margin-bottom: 0.35em;
    text-align: center;
}

.bh-calendar {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #ccd0d4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.bh-calendar th,
.bh-calendar td {
    border: 1px solid #ccd0d4;
    text-align: center;
    padding: 0.5em;
    height: 70px;
}

.bh-calendar tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.bh-calendar tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.bh-calendar tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.bh-calendar tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.bh-calendar th {
    background: #f6f7f7;
    font-weight: 600;
}

.bh-calendar-nav-link {
    color: #007cba;
    text-decoration: none;
}

.bh-calendar-nav-link:hover,
.bh-calendar-nav-link:focus {
    text-decoration: underline;
}

.bh-calendar-title {
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.bh-day {
    cursor: default;
    position: relative;
    transition: background 0.2s ease;
}

.bh-day-number {
    font-weight: 600;
}

.bh-day-changeover {
    box-shadow: inset 0 0 0 2px #2f9d58;
}

.bh-day-changeover .bh-day-number {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.bh-day-changeover .bh-day-number::after {
    content: '•';
    position: absolute;
    right: 0;
    top: -6px;
    color: #2f9d58;
    font-size: 18px;
    line-height: 1;
}

.bh-day-available.bh-day-changeover {
    background: #e2f3e0;
}

.bh-day-available {
    cursor: pointer;
    background: #edf7ec;
}

.bh-day-booked {
    background: #f8d7da;
    color: #555;
}

.bh-day-past {
    background: #f0f0f0;
    color: #999;
}

.bh-day-selected,
.bh-day-range {
    background: #007cba;
    color: #fff;
}

.bh-day-selected-start {
    background: #004b78 !important;
    color: #fff !important;
    outline: 3px solid rgba(0, 124, 186, 0.4);
    outline-offset: -3px;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.bh-day-empty {
    background: transparent;
    border: none;
}
