.acct-toggle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
}
.acct-option {
    display: flex;
    align-items: center;
    gap: 11px;
    border: 2px solid #d9c9a8;
    border-radius: 8px;
    padding: 11px 14px;
    cursor: pointer;
    background: #fdfaf4;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.9em;
    color: #6b4c2a;
    transition: border-color 0.15s, background 0.15s;
}
.acct-option .acct-emoji { font-size: 1.4em; line-height: 1; }
.acct-option .acct-text { display: flex; flex-direction: column; }
.acct-option .acct-desc { font-size: 0.78em; color: #9a7a4a; margin-top: 1px; }
.acct-option.selected {
    border-color: #c9923a;
    background: #fbf1de;
    color: #3a2e1e;
    font-weight: bold;
}
.acct-option.selected .acct-desc { color: #8a6a3a; }
.acct-toggle input { position: absolute; opacity: 0; pointer-events: none; }

#students-section { display: none; }
.student-row {
    display: grid;
    grid-template-columns: 1fr 70px 34px;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
}
.student-row input { margin: 0; }
.student-remove {
    background: #f0e3d0;
    border: none;
    border-radius: 8px;
    color: #8b2020;
    font-size: 1.2em;
    line-height: 1;
    height: 38px;
    cursor: pointer;
}
.student-remove:hover { background: #e8d4ba; }
.add-student-btn {
    background: none;
    border: 2px dashed #c9923a;
    color: #b07a28;
    border-radius: 8px;
    padding: 9px;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.88em;
    font-weight: bold;
    cursor: pointer;
}
.add-student-btn:hover { background: #fbf1de; }
.section-hint {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.78em;
    color: #9a7a4a;
    margin: -6px 0 12px;
}

.pref-toggle { display: flex; gap: 10px; }
.pref-option {
    flex: 1;
    border: 2px solid #d9c9a8;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background: #fdfaf4;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.88em;
    color: #6b4c2a;
    transition: border-color 0.15s, background 0.15s;
}
.pref-option.selected {
    border-color: #5a7a3a;
    background: #eef3e6;
    color: #3a2e1e;
    font-weight: bold;
}
.pref-toggle input { position: absolute; opacity: 0; pointer-events: none; }
