.custom-booking-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Progress Indicator */
.cbf-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.cbf-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.cbf-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.cbf-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.cbf-progress-step.active .cbf-step-number {
    background: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.cbf-progress-step.completed .cbf-step-number {
    background: #81C784;
    color: white;
}

.cbf-step-label {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.cbf-progress-step.active .cbf-step-label {
    color: #4CAF50;
    font-weight: 600;
}

/* Steps */
.cbf-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

.cbf-step h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.cbf-step h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #444;
}

/* Location Grid */
.cbf-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cbf-location-card {
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
	padding-bottom: 20px;
}

.cbf-location-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cbf-location-card.selected {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.cbf-location-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.cbf-location-card h3 {
	padding-top: 0px;
    text-align: center;
    font-size: 20px;
    color: #333;
}

.cbf-location-card p {
    padding-bottom: 20px;	
    text-align: center;
    font-size: 16px;
    color: #333;
}

/* Visit Type */
.cbf-visit-type {
    text-align: center;
    margin-top: 30px;
}

.cbf-visit-type-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cbf-visit-type-btn {
    padding: 15px 40px;
    font-size: 16px;
    border: 2px solid #4CAF50;
    background: white;
    color: #4CAF50;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cbf-visit-type-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Services Grid */
.cbf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cbf-service-card {
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.cbf-service-card:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cbf-service-card h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* Employees Grid */
.cbf-employees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cbf-employee-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.cbf-employee-card:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cbf-employee-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.cbf-employee-card h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* Booking Summary */
.cbf-booking-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.cbf-summary-item {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.cbf-summary-item strong {
    color: #333;
    margin-right: 10px;
}

/* Calendar Container */
.cbf-calendar-container {
    min-height: 400px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}

/* Back Button */
.cbf-back-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: 2px solid #666;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cbf-back-btn:hover {
    background: #666;
    color: white;
}

/* Loading & Messages */
.cbf-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

.cbf-no-results,
.cbf-error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.cbf-error {
    color: #f44336;
}

.cbf-progress-step.completed {
    cursor: pointer;
}

.cbf-progress-step.completed:hover .cbf-step-number {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cbf-progress {
        margin-bottom: 30px;
    }
    
    .cbf-step-label {
        font-size: 12px;
    }
    
    .cbf-step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .cbf-location-grid,
    .cbf-services-grid,
    .cbf-employees-grid {
        grid-template-columns: 1fr;
    }
    
    .cbf-step h2 {
        font-size: 24px;
    }
}
