/* /Components/DoctorFields.razor.rz.scp.css */
.field[b-nzc6yjoqh6] {
    display: block;
    margin-bottom: 1rem;
}

.field > span[b-nzc6yjoqh6] {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.field small[b-nzc6yjoqh6] {
    color: var(--text-light);
    font-weight: 400;
}

.field input[type=text][b-nzc6yjoqh6] {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text);
}

.field input[type=text]:focus[b-nzc6yjoqh6] {
    outline: none;
    border-color: var(--primary);
}

.segmented[b-nzc6yjoqh6] {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.segmented label[b-nzc6yjoqh6] {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--text-muted);
}

.segmented label.on[b-nzc6yjoqh6] {
    background: var(--primary);
    color: #fff;
}

.segmented input[b-nzc6yjoqh6] {
    display: none;
}

.days[b-nzc6yjoqh6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.day[b-nzc6yjoqh6] {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    user-select: none;
    color: var(--text-muted);
    background: var(--success-light);
}

.day.on[b-nzc6yjoqh6] {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

.day input[b-nzc6yjoqh6] {
    display: none;
}
/* /Components/Landing.razor.rz.scp.css */
.landing[b-hhrjbf2rx9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    gap: 0.75rem;
    padding: 2rem;
}

.landing h1[b-hhrjbf2rx9] {
    margin: 0;
    font-size: 2.5rem;
    color: var(--text);
}

.landing .tagline[b-hhrjbf2rx9] {
    margin: 0;
    font-size: 1.1rem;
    color: #7e8299;
}

.landing .login[b-hhrjbf2rx9] {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.landing .login:hover[b-hhrjbf2rx9] {
    filter: brightness(0.95);
}
/* /Components/Modal.razor.rz.scp.css */
.modal-backdrop[b-kfauqrgkdu] {
    position: fixed;
    inset: 0;
    background: rgba(24, 28, 50, 0.45);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem;
    padding-top: calc(1.5rem + env(safe-area-inset-top));
    overflow-y: auto;
    z-index: 100;
}

.modal[b-kfauqrgkdu] {
    width: 100%;
    max-width: 460px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 1.5rem 3rem rgba(24, 28, 50, 0.25);
    padding: 1.25rem;
}

.modal h2[b-kfauqrgkdu] {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}
/* /Layout/LoginDisplay.razor.rz.scp.css */
.login[b-uw8oovcaas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user[b-uw8oovcaas] {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.logout[b-uw8oovcaas] {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    font-size: 0.85rem;
}

.logout:hover[b-uw8oovcaas] {
    background: var(--border-light);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app[b-spd0u3szsa] {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.appbar[b-spd0u3szsa] {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    padding-top: calc(0.75rem + env(safe-area-inset-top));
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
}

.brand[b-spd0u3szsa] {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    margin-right: auto;
}

.tabs[b-spd0u3szsa] {
    display: flex;
    gap: 0.25rem;
}

.tabs[b-spd0u3szsa]  .tab {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.tabs[b-spd0u3szsa]  .tab:hover {
    background: var(--border-light);
}

.tabs[b-spd0u3szsa]  .tab.active {
    background: var(--primary);
    color: #fff;
}

.content[b-spd0u3szsa] {
    flex: 1;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
}
/* /Pages/Doctors.razor.rz.scp.css */
.doctors[b-hx9ki0hkmb] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
}

.doctors-header[b-hx9ki0hkmb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.doctors-header h1[b-hx9ki0hkmb] {
    margin: 0;
    font-size: 1.6rem;
}

.btn-primary[b-hx9ki0hkmb] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-primary:hover[b-hx9ki0hkmb] {
    background: var(--primary-hover);
}

.btn-ghost[b-hx9ki0hkmb] {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    color: var(--text);
}

.btn-ghost:hover[b-hx9ki0hkmb] {
    background: var(--border-light);
}

.btn-danger[b-hx9ki0hkmb] {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--danger);
    border-radius: var(--radius);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

.btn-danger:hover[b-hx9ki0hkmb] {
    background: var(--danger-light);
}

.btn-cancel[b-hx9ki0hkmb] {
    background: var(--card-bg);
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-cancel:hover[b-hx9ki0hkmb] {
    background: var(--danger-light);
}

.error[b-hx9ki0hkmb] {
    color: var(--danger);
    font-size: 0.9rem;
}

.editor-actions[b-hx9ki0hkmb] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.doctor-list[b-hx9ki0hkmb] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doctor-row[b-hx9ki0hkmb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
}

.doctor-row .info[b-hx9ki0hkmb] {
    display: flex;
    flex-direction: column;
}

.doctor-row .name[b-hx9ki0hkmb] {
    font-size: 1.05rem;
}

.doctor-row .schedule[b-hx9ki0hkmb] {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.row-actions[b-hx9ki0hkmb] {
    display: flex;
    gap: 0.5rem;
}

.muted[b-hx9ki0hkmb] {
    color: var(--text-muted);
    padding: 1.5rem 0;
}
/* /Pages/Home.razor.rz.scp.css */
.day-view[b-cmzizmsp53] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
}

.day-header[b-cmzizmsp53] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav[b-cmzizmsp53] {
    font-size: 2rem;
    line-height: 1;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--border-light);
    color: var(--text);
    cursor: pointer;
}

.nav:hover[b-cmzizmsp53] {
    background: var(--border);
}

.day-title[b-cmzizmsp53] {
    text-align: center;
}

.day-title h1[b-cmzizmsp53] {
    margin: 0;
    font-size: 1.6rem;
}

.day-date[b-cmzizmsp53] {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.doctor-list[b-cmzizmsp53] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.doctor-card[b-cmzizmsp53] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
}

.doctor-card.done[b-cmzizmsp53] {
    background: var(--success-light);
    border-color: var(--success);
}

.check[b-cmzizmsp53] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.check input[type=checkbox][b-cmzizmsp53] {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.name[b-cmzizmsp53] {
    font-size: 1.1rem;
}

.doctor-card.done .name[b-cmzizmsp53] {
    text-decoration: line-through;
    color: var(--text-muted);
}

.card-actions[b-cmzizmsp53] {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.carry-dots[b-cmzizmsp53] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.dot[b-cmzizmsp53] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
}

.move[b-cmzizmsp53] {
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius);
}

.move:hover[b-cmzizmsp53] {
    background: var(--border-light);
}

.add-visit[b-cmzizmsp53] {
    margin: 1.25rem auto 0;
    display: block;
    width: 100%;
    max-width: 340px;
    border: 1px dashed var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.today-btn[b-cmzizmsp53] {
    margin: 1.5rem auto 0;
    display: block;
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.muted[b-cmzizmsp53] {
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 0;
}

.add-row[b-cmzizmsp53] {
    display: flex;
    gap: 0.5rem;
}

.add-select[b-cmzizmsp53] {
    flex: 1;
    min-width: 0;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text);
}

.btn-add[b-cmzizmsp53] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-add:disabled[b-cmzizmsp53] {
    opacity: 0.5;
    cursor: default;
}

.add-divider[b-cmzizmsp53] {
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 1rem 0;
}

.btn-primary[b-cmzizmsp53] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover[b-cmzizmsp53] {
    background: var(--primary-hover);
}

.block[b-cmzizmsp53] {
    display: block;
    width: 100%;
}

.add-error[b-cmzizmsp53] {
    color: var(--danger);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.btn-cancel[b-cmzizmsp53] {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-cancel:hover[b-cmzizmsp53] {
    background: var(--danger-light);
}
