/* Light schedule presentation only. No saving, timers or device commands. */
.schedule-card.feed-schedule { border-top: 3px solid #bf8421; }
.schedule-card.water-schedule { border-top: 3px solid #287da8; }
.light-schedule {
    grid-column: 1 / -1;
    min-width: 0;
    border-top: 3px solid #2f8059;
}
.light-schedule-explainer .light-explainer-note {
    margin-top: 20px;
    padding: 12px 14px;
    border-left: 3px solid #2f8059;
    background: #eaf5ed;
    border-radius: 0 8px 8px 0;
    font-size: 12px;
}
#lightScheduleDetailBtn { min-height: 40px; font-size: 12px; }
#light-schedule-popup .sensor-popup-close:focus-visible,
#lightScheduleDetailBtn:focus-visible { outline: 3px solid #2f8059; outline-offset: 3px; }
.light-schedule .schedule-card-title > span {
    flex-shrink: 0;
    color: #a46a13;
    background: #fff0d2;
}
.light-schedule-times {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.light-time-field {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line, #dce6df);
    border-radius: 12px;
    background: #fafcf9;
}
.light-schedule .light-time-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--ink, #10251e);
    font-size: 13px;
    font-weight: 600;
}
.light-time-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c99228;
}
.light-time-dot-off { background: #708277; }
.light-schedule input[type="time"] {
    display: block;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    font-size: 18px;
    color-scheme: light;
}
.light-schedule-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}
.light-schedule-copy { min-width: 0; }
.light-schedule-copy p {
    margin: 0;
    color: var(--muted, #647c6c);
    font-size: 12px;
    line-height: 1.8;
}
#lightScheduleStatus { margin-top: 3px; color: #8b681e; }
.light-schedule .schedule-btn {
    width: auto;
    min-height: 46px;
    margin: 0;
    padding: 12px 18px;
    gap: 20px;
    flex-shrink: 0;
    background: #a86e1b;
}
.light-schedule .schedule-btn:hover { background: #875611; }
.light-schedule input:focus-visible,
.light-schedule button:focus-visible {
    outline: 3px solid #2f8059;
    outline-offset: 3px;
}
@media (max-width: 800px) {
    .light-schedule-footer { align-items: stretch; flex-direction: column; gap: 12px; }
    .light-schedule .schedule-btn { width: 100%; }
}
@media (max-width: 480px) {
    .light-schedule-times { grid-template-columns: 1fr; gap: 10px; }
}
