/* === ☀️ Утренний брифинг — модалка настроек === */
.aya-brief-ov {
    position: fixed; inset: 0; z-index: 4200;
    background: rgba(0,0,0,.42);
    display: flex; align-items: center; justify-content: center; padding: 18px;
    animation: attachFade .14s ease;
}
.aya-brief-modal {
    width: 100%; max-width: 420px;
    background: #fff; border-radius: 18px; padding: 20px 18px 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,.28);
    text-align: center;
}
.aya-brief-hero {
    font-size: 40px; line-height: 1; margin-bottom: 8px;
}
.aya-brief-title { font-size: 18px; font-weight: 600; color: #0b1620; margin-bottom: 6px; }
.aya-brief-sub { font-size: 13.5px; line-height: 1.45; color: #5a6b74; margin-bottom: 16px; }
.aya-brief-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 2px; border-top: 1px solid #eef2f4;
    text-align: left;
}
.aya-brief-hour-row { border-bottom: 1px solid #eef2f4; margin-bottom: 16px; }
.aya-brief-row-label { font-size: 15px; color: #0b1620; }
.aya-brief-hour {
    border: 1px solid #d5dee2; background: #f4f7f9; color: #0b1620;
    border-radius: 10px; padding: 8px 10px; font-size: 15px; cursor: pointer;
    -webkit-appearance: none; appearance: none;
}
.aya-brief-test {
    width: 100%; border: 1px solid #0a7c88; background: #eaf6f7; color: #0a7c88;
    border-radius: 12px; padding: 12px; font-size: 15px; font-weight: 600; cursor: pointer;
    margin-bottom: 10px;
}
.aya-brief-test:active { background: #dceff1; }
.aya-brief-test:disabled { opacity: .6; cursor: default; }
.aya-brief-done {
    width: 100%; border: none; background: #0a7c88; color: #fff;
    border-radius: 12px; padding: 13px; font-size: 15px; font-weight: 600; cursor: pointer;
}
body.dark-theme .aya-brief-modal { background: #161D27; }
body.dark-theme .aya-brief-title { color: #e7edf3; }
body.dark-theme .aya-brief-sub { color: #9fb0bb; }
body.dark-theme .aya-brief-row { border-color: #232d38; }
body.dark-theme .aya-brief-hour-row { border-color: #232d38; }
body.dark-theme .aya-brief-row-label { color: #e7edf3; }
body.dark-theme .aya-brief-hour { background: #1c2530; color: #e7edf3; border-color: #2a3542; }
body.dark-theme .aya-brief-test { background: #14232a; color: #4fc3cf; border-color: #24606a; }
