/*:root {
    --primary-color: #1ab394;
    --secondary-color: #16a085;
    --accent-color: #1dd1a1;
    --background-light: #f8fffe;
    --background-dark: #ecf9f7;
    --text-dark: #2d3436;
    --text-gray: #636e72;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-light: #e8f5f3;
    --border-medium: #d1f2df;
    --success-color: #1ab394;
    --danger-color: #dc3545;
    --warning-color: #ffc107;

    --border-radius: 12px;
    --border-radius-small: 8px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}*/

.but-height
{
    height: 42px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /*padding: 20px 10px;*/
    background: transparent;
    color: var(--text-dark);
    line-height: 1.6;
    height:auto;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
    z-index: -1;
}

/* Container */
.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Widget Container */
.reservation-widget {
    border-radius: var(--border-radius);
    overflow: visible;
    position: relative;
    margin: 0 auto;
}

#reservation-flow {
    /*box-shadow: var(--shadow-hard);*/
    background-color: var(--form-bg-color);
    height: auto;
    padding-top: 10px;
    overflow-y: scroll;
    overflow: hidden;
    border-radius: 10px;
}

/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, #00f2fe 100%);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43e97b 0%, #38f9d7 100%);
}

/* Widget Steps */
.widget-step {
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    pointer-events: none;
}

.widget-step.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

/* Widget Header */
.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--form-bg-color);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.btn-back {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--form-text-color);
}

.btn-back:hover {
    background: rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.widget-title .location {
    font-weight: 400;
    color: var(--form-text-color);
}

.language-selector {
    position: relative;
}

.language-toggle-btn {
    background-color: var(--form_input_bg_color);
    color: var(--form-text-color);
    border: 1px solid var(--form_main_buttons_border_color);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background-color: var(--form-bg-color);
    color: var(--form-text-color);
    border: 1px solid var(--form_main_buttons_border_color);
    border-radius: 5px;
    overflow: hidden;
    z-index: 10;
}

.language-dropdown a {
    color: var(--form-text-color);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.language-dropdown a:hover {
    background-color: var(--primary-color);
    color: var(--form_button_text_color);
}

.brand-logo {
    text-align: center;
    padding: 20px;
}

.brand-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(26, 179, 148, 0.2);
}

/* Landing Page */
.landing-buttons {
    padding: 0px 24px;
    display: flex;
    flex-direction: row;
    height: 90px;
    min-height: 90px;
}


.landing-buttons button, .right-img-border{
    border: 1px solid var(--form_main_buttons_border_color);
}

@media (max-width: 768px) {
    .landing-buttons {
        flex-direction: row;
        padding: 0px 20px;
    }

    
    .class-set.fullwidget {
        width: 100%;
        position: fixed;
    }

     .class-set .form-step .step-content
    {
    max-height: 100vh;
    overflow: scroll;
    }

    .btn-action {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .landing-buttons {
        flex-direction: row;
        padding: 0px 16px;
    }

    .btn-action {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .class-set.fullwidget {
        width: 100%;
        position: fixed;
    }

    .class-set .form-step .step-content
    {
    max-height: 100vh;
    overflow: scroll;
    }
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border-right: 1px solid white;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

#btn-reserveren{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.right-img-border
{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 42px;
    height:42px;
    padding:0;
    background: var(--form_main_button_bg_color);
    color: var(--white);
    margin-left:-2px;
}

#btn-cadeaubonnen
{
}

.btn-action.btn-primary {
    background: var(--form_main_button_bg_color);
    color: var(--form_main_button_text_color) !important;
    margin-left: -11px;
}

.btn-action.btn-primary:hover {
}
.notification-text
{
    font-size: 15px;
}
.btn-action.btn-secondary {
    background: var(--background-light);
    color: var(--primary-color);
}

.btn-action.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--form_main_buttons_border_color);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--form-bg-color);
    border-bottom: 1px solid var(--border-light);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--white);
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.progress-step.completed .step-number {
    background: var(--secondary-color);
    color: var(--white);
}

.step-label {
    font-size: 12px;
    color: var(--form-text-color);
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--form-text-color);
    font-weight: 500;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    margin: 0 16px;
    position: relative;
    z-index: 1;
}

.progress-line.completed {
    background: var(--primary-color);
}

/* Form Steps */
.form-step {
    display: none;
    padding: 0;
}

.form-step.active {
    display: block;
}

.step-content {
    padding: 24px;
    padding-top:10px;
    overflow: visible;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Notifications and Tips */
.notification, .tip {
    gap: 12px;
    padding: 10px;
    border-radius: var(--border-radius-small);
    /*margin-bottom: 24px;*/
    font-size: 14px;
    line-height: 1.5;
    text-align:center;
    color:var(--form-text-color) !important;
}

.notification {
    border-bottom: 1px solid var(--border-light);
    background-color: var(--form_input_bg_color);
    border-radius: 0px;
}

.notification img{
    width:100%;
    max-height: 200px;
    object-fit:cover;
    border-radius: 10px;
    margin-bottom:10px;
}
.form-control.error
.tip {
    background: #d1ecf1;
    border-left: 4px solid #bee5eb;
}

.notification i, .tip i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--form-text-color);
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: var(--form-text-color);
}

.required {
    color: var(--danger-color);
}

/* Form Controls */
.form-control{
    border:0;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light) !important;
    border-radius: 0;
    border-bottom-width: var(--form_input_border_width);
    font-size: 16px;
    transition: var(--transition);
    background: var(--form_input_bg_color);
    color: var(--form-text-color);
    box-shadow: none !important;
}


.selected-date.placeholder, .date-display{
    background: var(--form_input_bg_color);
    color: var(--form-text-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--form_input_bg_color);
    color: var(--form-text-color);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* Phone Input */
.phone-input {
    display: flex;
    gap: 0;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--background-light);
    border: 1px solid var(--border-medium);
    border-right: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    font-size: 14px;
    color: var(--text-dark);
}

.phone-input .form-control {
}

/* Reservation Summary */
.reservation-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px 16px;
    color: var(--form-text-coor);
    border-radius: var(--border-radius-small);
    margin-bottom: 10px;
    justify-content: space-between;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--form-text-color);
}

.summary-item i {
    color: var(--form-text-color);
}

/* Contact Details */
.contact-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 16px;
    margin-bottom: 1px;
    color: var(--form-text-color);
}

.detail-item:first-child {
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}

.detail-item:last-child {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    margin-bottom: 0;
}

.detail-item i {
    width: 20px;
    height: 20px;
    color: var(--form-text-color);
    flex-shrink: 0;
}

.detail-item div {
    flex: 1;
}

.detail-item label {
    display: block;
    font-size: 14px;
    color: var(--form-text-color);
    margin-bottom: 2px;
}

.detail-item span {
    font-size: 14px;
    color: var(--form-text-color);
    font-weight: 500;
}

/* Buttons */
.btn-continue, .btn-confirm {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--form_button_text_color);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 24px 0px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.btn-continue:hover, .btn-confirm:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color:var(--white);
}

.btn-continue:disabled, .btn-confirm:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-edit {
    background: none;
    border: none;
    color: var(--form-text-color);
    font-size: 14px;
    cursor: pointer;
    padding: 10px 0px 15px 0;
    text-decoration: underline;
    transition: var(--transition);
}

.btn-edit:hover {
    color: var(--form-text-color);
    text-decoration: underline;
}

.btn-edit i {
    width: 16px;
    height: 16px;
}

/* Newsletter Checkbox */
.newsletter-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.form-check-input {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check-label {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    cursor: pointer;
}

/* Terms Text */
.terms-text {
    text-align: center;
    font-size: 14px;
    color: var(--form-text-color);
    padding: 0 24px 24px;
    margin-bottom:25px;
}

.terms-link {
    color: var(--form-text-color);
    text-decoration: underline;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Success Message */
.success-content {
    text-align: center;
    padding: 40px 24px;
}

.success-icon {
    margin-bottom: 24px;
}

.success-icon i {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
}

.success-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.success-content p {
    font-size: 16px;
    color: var(--form-text-color);
    margin-bottom: 16px;
    line-height: 1.5;
}

.reservation-id {
    font-weight: 500;
    color: var(--text-dark);
}

.reservation-id span {
    color: var(--primary-color);
    font-family: monospace;
}

/* Footer */
.widget-footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 7.5px;
    font-size:12px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    background: var(--form-bg-color);
    color: var(--form-text-color);
}

.widget-footer a{
    color: var(--form-text-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px 5px;
    }

    .reservation-widget {
        margin: 0;
        border-radius: 0;
    }

    .widget-header {
        padding: 10px 20px;
    }

    .widget-title {
        font-size: 16px;
    }

    .step-content {
        padding: 20px;
        padding-top:7.5px;
    }

    .progress-indicator {
        padding: 20px 16px;
    }

    .step-label {
        font-size: 11px;
    }

    .progress-line {
        margin: 0 12px;
    }

    .reservation-summary {
        flex-direction: row;
    }

    .btn-continue, .btn-confirm {
        width: 100%;
        margin: 0;
        margin-bottom:10px;
    }
}

@media (max-width: 480px) {
    .progress-indicator {
        padding: 16px 12px;
    }

    .progress-line {
        margin: 0 8px;
    }

    .step-content {
        padding: 15px 5px;
        padding-top:5px;
    }

    .calendar-days{
        padding:2.5px !important;
        gap: 0px !Important;
        aspect-ratio: 0 !important;
    }

    .btn-continue, .btn-confirm {
        width: 100%;
        margin: 16px 0px;
        margin-top: 0;
    }

    .calendar-header {
        padding: 12px;
    }

    .month-year {
        font-size: 14px;
        min-width: 120px;
    }

    .nav-btn {
        padding: 6px;
    }

    .nav-btn i {
        width: 16px;
        height: 16px;
    }

    .weekday {
        padding: 8px 4px;
        font-size: 11px;
    }

    .calendar-days {
        padding: 6px;
        gap: 1px;
    }

    .calendar-day {
        font-size: 13px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Date Picker */
.custom-date-picker {
    position: relative;
}

.date-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-color: var(--border-light);
    border: var(--form_input_border_width);
    border-radius: var(--border-radius);
    background: var(--form_input_bg_color);
    cursor: pointer;
    transition: var(--transition);
    min-height: 50px;
}

.date-display:hover {
    border-color: var(--primary-color);
}

.date-display.active {
    border-color: var(--primary-color);
}

.active-footer
{
    display: block;
}

.selected-date {
    font-size: 15px;
    color: var(--form-text-color);
}

.selected-date.placeholder {
    color: var(--form-text-color);
    opacity:1;
}

.form-control::placeholder{
    color:var(--form-text-color) !Important;
}

.calendar-dropdown {
    bottom: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    z-index: 1000;
    margin-bottom: 8px;
    display: none; /* Changed from block to none for animation */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.375s ease-out; /* Slower animation */
}

.calendar-dropdown.show {
    display: block; /* Keep display: block for the 'show' state */
    max-height: 425px; /* Adjust as needed */
}


.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, var(--background-light), var(--background-dark));
    border-bottom: 1px solid var(--border-light);
}

.nav-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--background-light);
}

.nav-btn i {
    width: 18px;
    height: 18px;
}

.month-year {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
    text-align: center;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.weekday {
    padding: 12px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px;
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 40px;
    margin: 1.5px;
}

.calendar-day:hover {
    background: var(--background-light);
}

.calendar-day.other-month {
    color: var(--text-light);
}

.calendar-day.disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.calendar-day.today {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    border: 2px solid var(--white);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color), #0ea478);
    color: black;
    font-weight: 600;
    border: 2px solid var(--white);
    transform: scale(1.1);
    color:#fff;
}

.calendar-day.available {
    position: relative;
    background: rgba(26, 179, 148, 0.05);
    border: 1px solid rgba(26, 179, 148, 0.1);
}

.calendar-day.available:hover {
    background: rgba(26, 179, 148, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.calendar-day.weekend {
    background: rgba(255, 193, 7, 0.05);
}

.calendar-day.weekend.available {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

.calendar-day.weekend.available:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: #ffc107;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Calendar Quick Actions */
.calendar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
#languageSelect {
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: var(--form-text-color);
    appearance: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#languageSelect::-ms-expand {
    display: none;
}
/* Error States */
.form-control.error {
    border-color: var(--danger-color);
}

.date-display.error {
    border-color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading States */
.btn-continue.loading, .btn-confirm.loading {
    position: relative;
    color: transparent;
}

.btn-continue.loading::after, .btn-confirm.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.active-footer{
    background-color: var(--form-bg-color);
    color: var(--form-text-color);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: var(--form-text-color) !important;
}

.footer-logo{
    height:30px;
}

.calendar-day.disabled{
    background-color:#ededed !important;
    border:1px solid #d5d5d5 !important;
    color:#333;
}

.calendar-day.weekend{
    background-color: unset;
}

.calendar-day.available{
    background:#ffffff !important;
    border-color: #e4e4e4 !important;
}

.calendar-header {
    background: #fff !important;
}

.calendar-day.today, .calendar-day.selected {
    background: var(--primary-color) !important;
}

.placeholder{
    cursor: pointer;
}

.fa.fa-chevron-down{
    color:var(--form-text-color);
}

button#btn-new-reservation{
    background: var(--primary-color);
    border-color: var(--secondary-color);
    margin-bottom:50px;
}

select.form-control {
    color: var(--form-text-color) !important;
    background-color: var(--form_input_bg_color) !important;
}

select.form-control option {
    color: var(--form-text-color);
    background-color: var(--form_input_bg_color);
}

.info-message-dark{
    color: var(--form-text-color);
}

@media (min-width: 420px) {
    .step-content {
        padding: 20px;
        padding-top:10px;
    }
}

/* Accordion Styles */
.accordion-item {
    background-color: transparent;
    margin-bottom: 10px;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--form-text-color);
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    transition: border-radius 0.3s ease, border-color 0.3s ease;
}
.accordion-header.is-invalid {
}
.accordion-header .header-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.accordion-header .header-value {
    font-weight: normal;
    color: var(--text-gray);
}
.accordion-header .accordion-arrow {
    transition: transform 0.3s ease;
}
.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.375s ease; /* Slower animation, removed delay */
    background-color: transparent;
}
.accordion-content > div {
    overflow: hidden;
}
.accordion-content.active {
    grid-template-rows: 1fr;
}
.accordion-content > .people-selector,
.accordion-content > .zone-selector {
    padding: 0 15px;
}
.accordion-content.active > .people-selector,
.accordion-content.active > .zone-selector,
.accordion-content.active > .calendar-dropdown {
    padding: 15px;
}


/* People Selector & Zone Styles */
.people-selector, .zone-selector {
}
.people-buttons, .zone-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}
.people-btn, .zone-btn {
    /*flex-grow: 1;*/
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--border-light);
    background-color: var(--form_input_bg_color);
    color: var(--form-text-color);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    min-width: 48px; /* Ensure buttons have a minimum width */
}
.people-btn:hover, .zone-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--secondary-color);
    color: var(--form_button_text_color);
}
.people-btn.active, .zone-btn.active {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    color: var(--form_button_text_color);
    font-weight: bold;
}
.people-stepper {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Makes buttons equal height */
    gap: 10px;
    padding: 10px 0;
}
.stepper-btn.square-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-light);
    background-color: var(--form_input_bg_color);
    color: var(--form-text-color);
    border-radius: var(--border-radius-small);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.people-btn.stepper-value-btn {
    flex-grow: 0;
    min-width: 60px;
    cursor: default;
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    color: var(--form_button_text_color);
    font-weight: bold;
}
.people-btn.stepper-value-btn:hover {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
}

.zone-buttons {
    margin-top: 10px;
    margin-bottom: 0px;
}

.calendar-dropdown, .calendar-header, .calendar-weekdays{
    background-color: var(--form_input_bg_color) !important;
}

.month-year, .weekday{
    color: var(--form-text-color) !important;
}

.calendar-day.disabled, .calendar-day.other-month{
    background-color: var(--form_calendar_days_disabled) !important;
}
.calendar-day.available{
    background-color: var(--form_calendar_days_enabled) !important;
}

.calendar-day.available:hover{
    background-color: var(--primary-color) !important;
    color: var(--form_button_text_color) !important;
}

.calendar-day.other-month {
    border: 0px ! Important;
    cursor: pointer !important;
}

.calendar-day, .calendar-day.available, .calendar-day.disabled{
    border:1px solid var(--primary-color) !important;
    color: var(--form-text-color) !important;
}

.calendar-day.available.selected{
    background-color:var(--primary-color) !important;
    color: var(--form_button_text_color) !important;
}

.calendar-day.other-month.disabled{
    cursor: not-allowed !Important;
}

div#zone-accordion {
    margin-bottom: 0px;
}

.people-selector {
    margin-bottom: 0 !important;
}

button#btn-confirm-reservation {
    margin-bottom: -20px;
}

.time-content span{
    color: var(--form-text-color);
}

#allslots .section-header{
    background-color: var(--form_shift_bg_color);
}

#people-accordion .accordion-header{
    padding-left:9.5px;
}

#date-accordion .accordion-header.is-invalid{
    margin-top:10px;
}

.notification-text.peopleamount{
    border:none;
}

.class-set
{
    position: fixed;
    right: 0px;
    overflow: hidden;

    height: auto !important;   
    max-height: none;
}

.class-set.fullwidget {
    width: 100%;
    height: 100%;
    max-height: 100%;
    /*overflow: scroll;*/
    padding-bottom: 50px;
}