.asb-date-time-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.asb-calendar, .asb-time-slots {
    flex: 1;
    min-width: 280px;
}

.asb-time-slots {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.asb-time-placeholder {
    color: #888;
    font-style: italic;
}

.asb-time-slots .asb-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.asb-time-slot {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.asb-time-slot:hover,
.asb-time-slot.button-primary {
    background: #0073aa;
    color: white;
}

.asb-date-time-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.asb-calendar-section, .asb-time-section {
    flex: 1;
    min-width: 300px;
}

.asb-time-section {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.asb-time-placeholder {
    color: #888;
    font-style: italic;
}

.asb-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.asb-time-slot {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.asb-time-slot:hover,
.asb-time-slot.button-primary {
    background: #0073aa;
    color: white;
}
.asb-step-1, .asb-step-2 {
    transition: all 0.3s ease;
}

/* Rome.js calendar styling */
.rome-table {
    width: 100% !important;
}
.asb-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.asb-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ddd;
    border-top-color: #38C4E9;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes asbSpin {
                    0% { transform: rotate(0deg); }
                    100% { transform: rotate(360deg); }
                }