.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}
.step.active .step-circle {
    background: #000000;
    color: white;
}
.step.active span {
    color: #000000;
    font-weight: 600;
}
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.form-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.time-slot {
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}
.time-slot:hover {
    border-color: #000000;
    background-color: #eff6ff;
}
.time-slot.selected {
    background-color: #000000;
    color: white;
    border-color: #000000;
}
/* Hide scrollbar for time slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}
.btn {
    padding: 10px 30px;
    border: 1px solid #000000;
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover {
    background-color: #000000;
    color: #ffffff;
}