/* Lomero Booking Calendar - Professional Business Styles */

/* General */
#lbc-calendar-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
	  z-index: 999;
  position: relative;
}

#lbc-calendar-wrapper * {
    box-sizing: border-box;
}

/* Form Controls */
.lbc-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: #fff;
}

.lbc-form-control:focus {
    outline: none;
    border-color: #4a5568;
    box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
}

.lbc-form-group {
    margin-bottom: 24px;
}

.lbc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
    font-size: 14px;
}

/* Service Selector */
.lbc-service-selector {
    margin-bottom: 32px;
}

.lbc-service-selector label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
}

/* Calendar Container */
.lbc-calendar-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Calendar Header */
.lbc-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.lbc-calendar-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1a202c;
    font-weight: 600;
}

.lbc-nav-btn {
    background: #4a5568;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.lbc-nav-btn:hover {
    background: #2d3748;
}

.lbc-nav-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

/* Calendar Grid */
.lbc-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.lbc-calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 12px 4px;
    background: #f7fafc;
    color: #4a5568;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lbc-calendar-day {
    aspect-ratio: 1;
    background: #fff;
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lbc-calendar-day:hover:not(.lbc-unavailable) {
    background: #f7fafc;
}

.lbc-calendar-day.lbc-other-month {
    color: #cbd5e0;
}

.lbc-calendar-day.lbc-today {
    background: #edf2f7;
    font-weight: 600;
}

.lbc-calendar-day.lbc-today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4a5568;
    border-radius: 50%;
}

.lbc-calendar-day.lbc-selected {
    background: #4a5568;
    color: white;
}

/* Available days - Professional green */
.lbc-calendar-day.lbc-available {
    background: #d0efda;
    color: #166534;
    font-weight: 500;
    cursor: pointer;
}

.lbc-calendar-day.lbc-available:hover {
    background: #dcfce7;
}

/* Limited availability - Subtle warning */
.lbc-calendar-day.lbc-limited {
    background: #fefce8;
    color: #854d0e;
    font-weight: 500;
}

.lbc-calendar-day.lbc-limited:hover {
    background: #fef3c7;
}

/* Unavailable days */
.lbc-calendar-day.lbc-unavailable {
    background: #fafafa;
    color: #9ca3af;
    cursor: not-allowed;
}

.lbc-calendar-day.lbc-unavailable::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background: #d1d5db;
    transform: rotate(-45deg);
}

.lbc-day-number {
    font-size: 14px;
    line-height: 1;
}

.lbc-day-status {
    font-size: 10px;
    margin-top: 4px;
    font-weight: 500;
}

/* Availability count indicator */
.lbc-availability-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #16a34a;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
}

.lbc-calendar-day.lbc-limited .lbc-availability-count {
    background: #ca8a04;
}

/* Calendar Legend */
.lbc-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
}

.lbc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
}

.lbc-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.lbc-legend-color.lbc-available {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.lbc-legend-color.lbc-limited {
    background: #fefce8;
    border-color: #fde68a;
}

.lbc-legend-color.lbc-unavailable {
    background: #fafafa;
    border-color: #e5e7eb;
}

/* Time Slot Container */
#lbc-timeslot-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#lbc-timeslot-container h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
}

.lbc-selected-date-info {
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 4px;
    font-size: 14px;
    color: #4a5568;
}

.lbc-selected-date-info strong {
    color: #1a202c;
}

/* Time Periods - Professional style */
.lbc-time-periods {
    display: grid;
    gap: 16px;
}

.lbc-time-period {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: border-color 0.2s;
}

.lbc-time-period:hover {
    border-color: #cbd5e0;
}

.lbc-time-period h4 {
    margin: 0 0 16px 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

/* Flexible slot - Professional design */
.lbc-flexible-slot {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
	  width: fit-content;
}

.lbc-slot-info {
    margin-bottom: 20px;
    color: #4a5568;
}

.lbc-slot-info strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin: 4px 0;
    font-size: 18px;
}

.lbc-select-flexible-slot {
    background: #4a5568;
    color: white;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    width: auto;
    min-width: 200px;
}

.lbc-select-flexible-slot:hover {
    background: #2d3748;
    transform: translateY(-1px);
}

/* Time slots grid */
.lbc-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.lbc-time-slot {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.lbc-time-slot:hover {
    background: #4a5568;
    color: white;
    border-color: #4a5568;
}

.lbc-time-slot.lbc-selected {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.lbc-time-slot.lbc-full {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.lbc-time-slot-availability {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Booking Form */
#lbc-booking-form-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#lbc-booking-form-container h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
}

.lbc-booking-summary {
    background: #f7fafc;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}

.lbc-booking-summary p {
    margin: 8px 0;
    color: #4a5568;
}

.lbc-booking-summary strong {
    color: #1a202c;
    font-weight: 600;
}

/* Buttons */
.lbc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.lbc-btn-primary {
    background: #4a5568;
    color: white;
}

.lbc-btn-primary:hover {
    background: #2d3748;
}

.lbc-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.lbc-btn-secondary:hover {
    background: #cbd5e0;
}

.lbc-form-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

/* Alerts */
.lbc-alert {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 1px solid;
}

.lbc-alert h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.lbc-alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.lbc-alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.lbc-alert-warning {
    background: #fefce8;
    border-color: #fde68a;
    color: #854d0e;
}

/* Loading */
.lbc-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.lbc-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #4a5568;
    border-radius: 50%;
    animation: lbc-spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    #lbc-calendar-wrapper {
        padding: 10px;
    }
    
    .lbc-calendar-container,
    #lbc-timeslot-container,
    #lbc-booking-form-container {
        padding: 16px;
        border-radius: 4px;
    }
    
    .lbc-calendar-grid {
        gap: 0;
    }
    
    .lbc-calendar-day {
        font-size: 12px;
        padding: 4px 2px;
    }
    
    .lbc-day-status {
        display: none;
    }
    
    .lbc-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .lbc-form-actions {
        flex-direction: column;
    }
    
    .lbc-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .lbc-calendar-legend {
        font-size: 12px;
        gap: 16px;
    }
    
    .lbc-flexible-slot {
        padding: 16px;
    }
    
    .lbc-select-flexible-slot {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .lbc-calendar-header h3 {
        font-size: 16px;
    }
    
    .lbc-nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .lbc-calendar-day-header {
        font-size: 11px;
        padding: 8px 2px;
    }
    
    .lbc-availability-count {
        font-size: 9px;
        padding: 1px 3px;
    }
}

/* Focus states for accessibility */
.lbc-btn:focus,
.lbc-nav-btn:focus,
.lbc-time-slot:focus {
    outline: 2px solid #4a5568;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .lbc-nav-btn,
    .lbc-form-actions,
    .lbc-calendar-legend {
        display: none;
    }
    
    .lbc-calendar-container {
        box-shadow: none;
        border: 1px solid #000;
    }
}



/* Zorg ervoor dat het tijdvak container breed genoeg is */
.lbc-flexible-slot {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Verbeter de layout van de tijdvak informatie */
.lbc-slot-info {
    width: 100%;
    margin-bottom: 24px;
}

.lbc-slot-info p,
.lbc-slot-info div {
    margin: 8px 0;
    line-height: 1.6;
}

/* Maak de button goed zichtbaar en gecentreerd */
.lbc-select-flexible-slot {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    margin-top: auto;
}

/* Specifieke fix voor het middag tijdvak */
.lbc-time-period[data-period="afternoon"] .lbc-flexible-slot {
    min-height: 280px;
}

/* Zorg dat de tekst niet overlapt */
.lbc-flexible-slot * {
    margin-bottom: 12px;
}

.lbc-flexible-slot *:last-child {
    margin-bottom: 0;
}

/* Voor kleinere schermen */
@media (max-width: 768px) {
    .lbc-flexible-slot {
        min-height: 220px;
        padding: 20px 16px;
    }
    
    .lbc-slot-info {
        font-size: 15px;
    }
    
    .lbc-select-flexible-slot {
        font-size: 15px;
        padding: 12px 24px;
    }
}


/* Form validation errors */
.lbc-form-control.lbc-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.lbc-form-control.lbc-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Form row layout */
.lbc-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.lbc-form-row .lbc-form-group {
    margin-bottom: 0;
}

.lbc-col-70 {
    flex: 0 0 70%;
}

.lbc-col-30 {
    flex: 0 0 28%;
}

/* Readonly fields */
.lbc-form-control.lbc-readonly {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.lbc-form-control.lbc-readonly:focus {
    border-color: #ddd;
    box-shadow: none;
}

/* Loading state */
.lbc-form-control.lbc-loading {
    background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
}

@media (max-width: 768px) {
    .lbc-form-row {
        flex-direction: column;
    }
    
    .lbc-col-70,
    .lbc-col-30 {
        flex: 1 1 100%;
    }
}



.lbc-calendar-day.lbc-limited {
    background: #fff3cd;
    color: #856404;
    font-weight: 500;
}

.lbc-calendar-day.lbc-limited:hover {
    background: #ffeaa7;
}

/* Update de legenda kleur voor beperkt */
.lbc-legend-color.lbc-limited {
    background: #fff3cd;
    border-color: #ffeaa7;
}

/* Optioneel: Voeg een klein waarschuwings-icoon toe voor beperkte dagen */
.lbc-calendar-day.lbc-limited .lbc-day-status::before {
    content: "⚠ ";
    font-size: 10px;
    opacity: 0.7;
}

/* Voor de tijdvak weergave - subtiele waarschuwing */
.lbc-flexible-slot .lbc-slot-info strong:contains("Beperkt") {
    color: #856404;
}

/* Als een tijdvak bijna vol is, toon dit subtieler */
.lbc-time-period[data-limited="true"] h4::after {
    content: " •";
    color: #ffc107;
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

.lbc-calendar-day.lbc-limited {
    background: #fff3cd;
    color: #856404;
    font-weight: 500;
}

.lbc-calendar-day.lbc-limited:hover {
    background: #ffeaa7;
}

/* Legenda kleur voor beperkt */
.lbc-legend-color.lbc-limited {
    background: #fff3cd;
    border-color: #856404;
}

/* Status tekst in kalender dagen */
.lbc-calendar-day.lbc-limited .lbc-day-status {
    font-weight: 600;
}

/* Flexible slot info kleuren zijn nu inline in de HTML */
.lbc-flexible-slot .lbc-slot-info {
    line-height: 1.8;
    font-size: 15px;
}

.lbc-flexible-slot .lbc-slot-info strong {
    font-weight: 600;
}

/* Unavailable message styling */
.lbc-unavailable-message {
    color: #dc3545;
    font-style: italic;
    margin-top: 15px;
    padding: 10px;
    background: #f8d7da;
    border-radius: 4px;
    text-align: center;
}

/* Verbeter de hover effecten */
.lbc-calendar-day.lbc-available:hover {
    background: #dcfce7;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lbc-calendar-day.lbc-limited:hover {
    background: #fef3c7;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



/* Service area status */
.lbc-service-area-status {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lbc-service-area-status .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.lbc-service-area-status strong {
    font-weight: 600;
}

/* Highlight fields when outside service area */
.lbc-outside-area {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
}

/* Buttons */
.lbc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.lbc-btn-primary {
    background: #4a5568;
    color: white;
}

.lbc-btn-primary:hover {
    background: #2d3748;
}

.lbc-btn-primary:disabled,
.lbc-btn-primary.disabled {
    background: #cbd5e0;
    color: #718096;
    cursor: not-allowed;
    opacity: 0.6;
}

.lbc-btn-primary:disabled:hover,
.lbc-btn-primary.disabled:hover {
    background: #cbd5e0;
}

.lbc-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.lbc-btn-secondary:hover {
    background: #cbd5e0;
}

/* Small spinner for inline use */
.lbc-loading-status .lbc-spinner {
    width: 16px;
    height: 16px;
    border-width: 2px;
    border-color: #90caf9;
    border-top-color: #1565c0;
}

/* Booking Header en Steps */
.lbc-booking-header {
    text-align: center;
    margin-bottom: 32px;
}

.lbc-booking-header h2 {
    margin: 0 0 24px 0;
    font-size: 28px;
    color: #1a202c;
    font-weight: 600;
}

/* Steps indicator */
.lbc-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.lbc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.lbc-step.active {
    opacity: 1;
}

.lbc-step-number {
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.lbc-step.active .lbc-step-number {
    background: #4a5568;
    color: white;
    transform: scale(1.1);
}

.lbc-step.completed .lbc-step-number {
    background: #48bb78;
    color: white;
}

.lbc-step-label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.lbc-step-arrow {
    margin: 0 20px;
    color: #cbd5e0;
    font-size: 20px;
}

/* Service selector verbetering */
.lbc-selector-intro {
    background: #edf2f7;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.lbc-selector-intro p {
    margin: 0;
    color: #2d3748;
    font-size: 15px;
    line-height: 1.6;
}

/* Empty state */
.lbc-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #a0aec0;
    margin-top: 20px;
}

.lbc-empty-icon {
    margin-bottom: 16px;
}

.lbc-empty-icon svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.lbc-empty-state p {
    font-size: 16px;
    margin: 0;
}

/* Hide empty state when service selected */
.service-selected .lbc-empty-state {
    display: none;
}

/* Responsive voor steps */
@media (max-width: 768px) {
    .lbc-steps {
        flex-wrap: wrap;
        padding: 16px;
    }
    
    .lbc-step {
        margin: 8px;
    }
    
    .lbc-step-arrow {
        display: none;
    }
    
    .lbc-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .lbc-step-label {
        font-size: 12px;
    }
}

/* Wizard Navigation */
.lbc-wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
    padding: 0 20px;
}

.lbc-wizard-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4a5568;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.lbc-wizard-nav:hover {
    background: #2d3748;
    transform: translateX(-2px);
}

.lbc-wizard-next:hover {
    transform: translateX(2px);
}

.lbc-wizard-nav:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.lbc-wizard-nav .dashicons {
    font-size: 20px;
    line-height: 1;
}

/* Wizard sections */
.lbc-wizard-section {
    min-height: 200px;
}

/* Specifieke hoogtes voor verschillende secties */
.lbc-service-selector {
    min-height: auto;
}

#lbc-calendar-container,
#lbc-timeslot-container,
#lbc-booking-form-container {
    min-height: 400px;
}

/* Clickable steps when available */
.lbc-step.completed,
.lbc-step.active {
    cursor: pointer;
}

.lbc-step.completed:hover .lbc-step-number,
.lbc-step.active:hover .lbc-step-number {
    transform: scale(1.15);
}

/* Responsive wizard navigation */
@media (max-width: 768px) {
    .lbc-wizard-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 12px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 100;
        border-top: 1px solid #e2e8f0;
    }
    
    .lbc-wizard-nav {
        flex: 1;
        justify-content: center;
    }
    
    .lbc-wizard-section {
        padding-bottom: 80px; /* Ruimte voor vaste navigatie */
    }
}

/* Smooth transitions */
.lbc-wizard-section {
    animation: fadeIn 0.3s ease-in;
}

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

/* iOS Safari display fix */
.lbc-wizard-section[style*="display: none"] {
    display: none !important;
}

/* Zorg dat sections echt verborgen zijn */
#lbc-calendar-container[style*="display: none"],
#lbc-timeslot-container[style*="display: none"],
#lbc-booking-form-container[style*="display: none"] {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* Service selector alleen in stap 1 */
.lbc-service-selector {
    margin-bottom: 32px;
    order: -1; /* Zorgt ervoor dat het altijd bovenaan staat */
}

/* Verberg service selector in andere stappen */
#lbc-calendar-wrapper[data-step="2"] .lbc-service-selector,
#lbc-calendar-wrapper[data-step="3"] .lbc-service-selector,
#lbc-calendar-wrapper[data-step="4"] .lbc-service-selector {
    display: none !important;
}

/* Steps altijd zichtbaar */
.lbc-booking-header {
    margin-bottom: 24px;
    order: 0;
}

/* Empty state alleen in stap 1 */
#lbc-calendar-wrapper[data-step="2"] .lbc-empty-state,
#lbc-calendar-wrapper[data-step="3"] .lbc-empty-state,
#lbc-calendar-wrapper[data-step="4"] .lbc-empty-state {
    display: none !important;
}


/* First Available Indicator - lichtere stijl */
.lbc-first-available {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4ff 100%);
    border: 2px solid #2196F3;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 24px 0;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
    animation: slideDown 0.4s ease-out;
}

.lbc-first-available-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lbc-first-available-icon {
    font-size: 24px;
    line-height: 1;
}

.lbc-first-available-text {
    font-size: 16px;
    color: #1976d2;
    font-weight: 500;
}

.lbc-first-available-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #2196F3;
    transition: all 0.2s;
    padding-bottom: 2px;
    display: inline-block;
}

.lbc-first-available-link:hover {
    color: #0d47a1;
    border-bottom-color: #0d47a1;
    transform: translateY(-1px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lbc-first-available {
        padding: 14px 16px;
        margin: 0 0 20px 0;
    }
    
    .lbc-first-available-content {
        font-size: 14px;
        gap: 8px;
    }
    
    .lbc-first-available-icon {
        font-size: 20px;
    }
    
    .lbc-first-available-text {
        font-size: 14px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight animation for time period */
.lbc-time-period.lbc-highlight {
    animation: highlight 0.5s ease-out;
    box-shadow: 0 0 0 3px #16a34a;
}

@keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px #16a34a;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lbc-first-available {
        padding: 14px 16px;
        margin: 16px 0;
    }
    
    .lbc-first-available-content {
        font-size: 14px;
    }
    
    .lbc-first-available-icon {
        font-size: 20px;
    }
}

/* Service selection in time periods */
.lbc-period-services {
    margin: 15px 0;
}

.lbc-select-service-prompt {
    margin-bottom: 10px;
    font-weight: 500;
    color: #4a5568;
}

.lbc-service-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.lbc-service-option:hover {
    border-color: #4a5568;
    background: #edf2f7;
}

.lbc-service-option.selected {
    border-color: #4a5568;
    background: #e2e8f0;
}

.lbc-service-option-inner strong {
    color: #2d3748;
    font-size: 16px;
}

.lbc-service-option-inner small {
    color: #718096;
}

.lbc-service-display {
    background: #f7fafc;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.lbc-service-display p {
    margin: 0;
    font-size: 16px;
}

.lbc-change-service {
    background: none;
    border: none;
    color: #4a5568;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

.lbc-change-service:hover {
    color: #2d3748;
}

.lbc-timeslot-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.lbc-loading-slots {
    text-align: center;
    padding: 20px;
    color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
    .lbc-service-option {
        padding: 12px;
    }
    
    .lbc-service-option-inner strong {
        font-size: 15px;
    }
}





/* Highlight animation for time period */
.lbc-time-period.lbc-highlight {
    animation: highlight 0.6s ease-out;
    box-shadow: 0 0 0 3px #667eea;
    border-radius: 8px;
}

@keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px #667eea;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lbc-first-available {
        padding: 16px;
        margin: 0 0 20px 0;
    }
    
    .lbc-first-available-content {
        font-size: 15px;
        gap: 10px;
    }
    
    .lbc-first-available-icon {
        font-size: 24px;
    }
    
    .lbc-first-available-text {
        font-size: 15px;
    }
}