/* Planner CSS: Wizard Steps, Quick Check-in */

/* ============================================
   Wizard Progress Dots
   ============================================ */

.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.wizard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, transform 0.3s;
}

.wizard-dot.active {
    background: var(--accent);
}

.wizard-dot.current {
    transform: scale(1.3);
}

/* ============================================
   Wizard Steps
   ============================================ */

.wizard-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

/* ============================================
   Wizard Navigation
   ============================================ */

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ============================================
   Quick Check-in
   ============================================ */

.quick-checkin {
    max-width: 500px;
    margin: 0 auto;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.slider-row label {
    flex: 0 0 120px;
    font-size: 0.875rem;
    color: var(--text);
}

.rating-slider {
    flex: 1;
    accent-color: var(--accent);
    height: 6px;
    cursor: pointer;
}

.slider-value {
    flex: 0 0 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent);
}

/* ============================================
   Mobile Responsive
   ============================================ */

@media (max-width: 768px) {
    .slider-row label {
        flex: 0 0 90px;
        font-size: 0.8125rem;
    }

    .wizard-nav {
        flex-direction: row;
        gap: 0.5rem;
    }

    .wizard-nav .btn {
        flex: 1;
    }
}
