/**
 * Scheduler Pages CSS
 */

/* Common styles for both index and logs pages */
.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Scheduler Index Page */
.schedule-card {
    transition: all 0.2s ease;
}

.schedule-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.schedule-disabled {
    opacity: 0.6;
}

.status-badge {
    font-size: 0.75rem;
}

.time-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.btn-icon {
    padding: 0.25rem 0.5rem;
}

/* Scheduler Logs Page */
.log-row {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.log-row:hover {
    background-color: #f8f9fa;
}

.status-success {
    color: #198754;
}

.status-failed {
    color: #dc3545;
}

.error-preview {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.875rem;
}
