.cbt-booking-form {
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.cbt-booking-form .cbt-field-group {
    margin-bottom: 1rem;
}

.cbt-booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cbt-booking-form input[type="text"],
.cbt-booking-form input[type="email"],
.cbt-booking-form input[type="number"],
.cbt-booking-form input[type="date"],
.cbt-booking-form textarea {
    width: 100%;
    max-width: 400px;
    border: 1px solid #A5851A;
    padding: 0.4rem 0.5rem;
    border-radius: 3px;
}

.cbt-submit-button {
    background: #A5851A;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 3px;
    cursor: pointer;
}

.cbt-submit-button:hover {
    background: #B89A32;
}


.cbt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.cbt-overlay-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.cbt-close-overlay {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
	background: #A5851A;
    color: #fff;
}
.cbt-calendar {
    border: 1px solid #ddd;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.cbt-cal-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cbt-cal-title {
    font-weight: 600;
}

.cbt-cal-nav {
    text-decoration: none;
    padding: 0.2rem 0.6rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.cbt-cal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 0.5rem;
}

.cbt-cal-table th,
.cbt-cal-table td {
    border: 1px solid #eee;
    padding: 0.4rem;
    width: 14.28%;
    box-sizing: border-box;
}

.cbt-cal-empty {
    background: #f9f9f9;
}

.cbt-cal-day-number {
    display: inline-block;
    font-weight: 500;
}

.cbt-cal-day-booked {
    background: #f8d7da;
}

.cbt-cal-day-free {
    background: #d4edda;
}

.cbt-cal-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.cbt-cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cbt-cal-legend-box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.cbt-cal-legend-free {
    background: #d4edda;
}

.cbt-cal-legend-booked {
    background: #f8d7da;
}
/* Ausgewählte Start- und Endtage */
.cbt-selected-start,
.cbt-selected-end {
    background: #ffe08a !important; /* kräftiges Gelb */
}

/* Zwischenbereich */
.cbt-selected-range {
    background: #fff3c4 !important; /* helles Gelb */
}

/* Vorschau beim Hover */
.cbt-hover-range {
    background: #fff9db !important;
}
.cbt-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #ddd;
}

.cbt-price-table th,
.cbt-price-table td {
    padding: 8px;
    border: 1px solid #eee;
    text-align: left;
}

.cbt-price-table tfoot td {
    font-size: 1.1em;
}
.cbt-cal-no-checkin {
    background-color: #e0e0e0 !important;
    color: #fff !important;
    opacity: 1 !important;
}


.cbt-cal-no-checkin .cbt-cal-day-number {
    color: #fff !important;
}

.cbt-cal-no-checkin:hover {
    cursor: not-allowed;
}
/* Kalender: 6 Monate nebeneinander */
/* Mehrmonats-Kalender: 3 Monate nebeneinander */
.cbt-calendar-multi {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Monate pro Reihe */
    gap: 20px;
    margin-top: 20px;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .cbt-calendar-multi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .cbt-calendar-multi {
        grid-template-columns: 1fr;
    }
}


/* Info box (z. B. über Kalender) */
.cbt-cal-info {
    margin-bottom: 6px;
    padding: 6px 10px;
    background: #E0CF93;
    border-left: 3px solid #A5851A;
    font-size: 14px;
    border-radius: 4px;
}

/* Info icon */
.cbt-info-icon {
    margin-right: 4px;
}


        .cbt-with-tooltip {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cbt-tooltip-icon {
            cursor: pointer;
            font-size: 16px;
            position: relative;
        }

        .cbt-tooltip-text {
            display: none;
            position: absolute;
            left: 25px;
            top: -5px;
            background: #fff;
            border: 1px solid #ccc;
            padding: 10px;
            width: 260px;
            z-index: 999;
            border-radius: 6px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }

        .cbt-tooltip-icon:hover .cbt-tooltip-text {
            display: block;
        }
		
		/* Tooltip-Text immer normal */
.cbt-tooltip-text {
    font-weight: normal !important;
}



/* ================================
   Kalender Slider – Grundlayout
================================ */

/* äußerer Wrapper */
.cbt-calendar-slider {
    position: relative;
    width: 100%;
}

/* Sichtfenster (zeigt genau 3 Monate) */
.cbt-calendar-viewport {
    overflow: hidden;
    width: 100%;
}

/* Track mit allen Monaten */
.cbt-calendar-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* Jeder Monatskalender */
.cbt-calendar {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
}



/* ================================
   Kalender Navigation
================================ */

.cbt-cal-nav {
    position: absolute;
    top: 50%;
    background: #E0CF93;
    border: 1px solid #A5851A;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 4px;
	color: #A5851A;
}

.cbt-cal-prev {
    left: -20px;
}

.cbt-cal-next {
    right: -20px;
}

.cbt-cal-nav:hover {
    background: #A5851A;
	color: #fff;
}

/* Verfügbarkeitsfarben */
.cbt-cal-free {
    background: #e7f7e7;
}

.cbt-cal-medium {
    background: #fff6cc;
}

.cbt-cal-low {
    background: #ffe0b3;
}

.cbt-cal-full {
    background: #ffd6d6;
}

/* Textanzeige unter der Zahl */
.cbt-cal-availability {
    display: block;
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.8;
}

/* Optional: Hover Tooltip */
.cbt-cal-day:hover::after {
    content: attr(data-info);
    position: absolute;
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    white-space: nowrap;
    transform: translateY(-110%);
    z-index: 10;
}


@media (max-width: 1000px) {
    .cbt-calendar-slider {
        width: 85%;
		margin: auto;
    }
}


