/* =====================================================
   bokning_bord – app.css
   ===================================================== */

/* Steg-indikator */
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #adb5bd;
    flex-shrink: 0;
}
.step-circle.active {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}
.step-circle.done {
    border-color: #198754;
    background: #198754;
    color: #fff;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    min-width: 30px;
}

/* Avdelningskort */
.cursor-pointer {
    cursor: pointer;
}
.section-label {
    cursor: pointer;
    transition: border-color .2s, background-color .2s, box-shadow .2s;
    background: #fff;
}
.section-label:hover {
    border-color: #0d6efd !important;
    background: #f0f5ff;
}
.form-check-input:checked + .section-label {
    border-color: #0d6efd !important;
    background: #e8f0fe;
    box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}
