/* Cron expression explainer - monospace input, preset buttons, plain-English description
   card, and the next-runs list. Reuses base .btn-outline; colors come from theme tokens only. */

.cron-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cron-label { font-size: 14px; color: var(--muted); font-weight: 600; }

.cron-input {
    width: 100%; box-sizing: border-box;
    font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 18px; line-height: 1.4; padding: 12px 14px;
    color: var(--text); background: var(--surface);
    border: 1px solid var(--border); border-radius: 12px;
}
.cron-input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

.cron-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cron-presets .btn-outline { font-size: 14px; }

.cron-error { margin: 0 0 16px; color: var(--bad); font-weight: 600; }

.cron-description {
    margin: 0 0 20px; padding: 16px 18px;
    background: var(--surface); border: 1px solid var(--border);
    border-left: 3px solid var(--accent); border-radius: 12px;
    font-size: 18px; line-height: 1.5; color: var(--text);
}
.cron-description:empty { display: none; }

.cron-next-title { font-size: 14px; color: var(--muted); font-weight: 600; margin: 0 0 8px; }

.cron-next-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cron-next-item {
    font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 15px; padding: 10px 14px;
    color: var(--text); background: var(--surface);
    border: 1px solid var(--border); border-radius: 10px;
}

.cron-next-empty { color: var(--muted); margin: 0; }
