/**
 * Crontab Generator Tool Specific Styling
 */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',sans-serif;background:transparent;color:#0f172a;line-height:1.6}
.cron-card{background:#fff;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.06);padding:32px;max-width:800px;margin:0 auto}
.cron-title{font-size:20px;font-weight:700;margin-bottom:24px;color:#0f172a}
.cron-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-bottom:24px}
@media(max-width:700px){.cron-grid{grid-template-columns:1fr 1fr}}
@media(max-width:400px){.cron-grid{grid-template-columns:1fr}}
.cron-field label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#64748b;text-transform:uppercase;letter-spacing:.5px}
.cron-field input{width:100%;height:48px;border:1.5px solid #e2e8f0;border-radius:8px;padding:0 12px;font-size:15px;font-family:'Inter',sans-serif;transition:all .2s ease;background:#fff;color:#0f172a;text-align:center}
.cron-field input:focus{outline:none;border-color:#4f46e5;box-shadow:0 0 0 3px rgba(79,70,229,.12)}
.cron-presets{display:flex;flex-wrap:wrap;gap:4px;margin-top:6px}
.cron-preset{background:#f1f5f9;border:1px solid #e2e8f0;border-radius:6px;padding:3px 8px;font-size:11px;font-family:'Inter',sans-serif;cursor:pointer;transition:all .2s ease;color:#0f172a}
.cron-preset:hover{background:#4f46e5;color:#fff;border-color:#4f46e5}
.cron-result{background:#f8fafc;border-radius:8px;padding:16px 20px;margin-bottom:20px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.cron-expr{font-family:'Courier New',monospace;font-size:18px;font-weight:700;color:#4f46e5;word-break:break-all}
.cron-desc{font-size:14px;color:#64748b;margin-bottom:20px;min-height:22px}
.cron-next{margin-bottom:20px}
.cron-next-title{font-size:14px;font-weight:600;color:#0f172a;margin-bottom:8px}
.cron-next-list{list-style:none;font-size:13px;color:#64748b}
.cron-next-list li{padding:4px 0;border-bottom:1px solid #f1f5f9}
.cron-next-list li:last-child{border-bottom:none}
.cron-error{color:#ef4444;font-size:13px;margin-top:4px;min-height:20px}
.cron-btn{background:#4f46e5;color:#fff;border:none;border-radius:8px;padding:10px 20px;font-size:14px;font-weight:600;font-family:'Inter',sans-serif;cursor:pointer;transition:all .2s ease}
.cron-btn:hover{background:#4338ca}
.cron-copied{background:#10b981!important}
[data-theme="dark"] .cron-card{background:#1e293b}
[data-theme="dark"] .cron-card input{background:#0f172a;color:#e2e8f0;border-color:#334155}
[data-theme="dark"] .cron-card input:focus{border-color:#818cf8}
[data-theme="dark"] .cron-result{background:#0f172a}
[data-theme="dark"] .cron-preset{background:#334155;border-color:#475569;color:#e2e8f0}
[data-theme="dark"] .cron-preset:hover{background:#4f46e5;border-color:#4f46e5}
[data-theme="dark"] .cron-card,.cron-card[data-theme="dark"]{background:#1e293b}
[data-theme="dark"] .cron-card input,.cron-card[data-theme="dark"] input{background:#0f172a;color:#e2e8f0;border-color:#334155}
[data-theme="dark"] .cron-card input:focus,.cron-card[data-theme="dark"] input:focus{border-color:#818cf8}
[data-theme="dark"] .cron-result,.cron-card[data-theme="dark"] .cron-result{background:#0f172a}
[data-theme="dark"] .cron-preset,.cron-card[data-theme="dark"] .cron-preset{background:#334155;border-color:#475569;color:#e2e8f0}
[data-theme="dark"] .cron-preset:hover,.cron-card[data-theme="dark"] .cron-preset:hover{background:#4f46e5;border-color:#4f46e5}
[data-theme="dark"] .cron-title,.cron-card[data-theme="dark"] .cron-title{color:#e2e8f0}
[data-theme="dark"] .cron-next-title,.cron-card[data-theme="dark"] .cron-next-title{color:#e2e8f0}
