/* Cron 생성기 전용 스타일 */

.cron-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preset-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.preset-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
}

.cron-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.cron-field {}

.cron-input {
    text-align: center;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
}

.cron-field-hint {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
    line-height: 1.3;
}

.cron-expression-box {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cron-expr-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cron-expr-value {
    font-family: monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pastel-blue-1);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.cron-expr-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.next-run-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
}

.next-run-section h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.next-run-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.next-run-item {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    background: var(--pastel-cream);
}

.limits-table-wrapper { overflow-x: auto; }

@media (max-width: 768px) {
    .cron-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}
