/**Layer 104: Content Scheduler*/

.scheduler-panel {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.scheduler-panel h3 {
    margin-top: 0;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.schedule-list h4 {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.empty-state {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.9rem;
}

.job-card {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #cbd5e1;
}

.job-card.pending {
    border-left-color: #3b82f6;
}

.job-card.completed {
    border-left-color: #10b981;
    opacity: 0.7;
}

.job-time {
    font-family: monospace;
    font-size: 0.9rem;
    color: #475569;
    margin-right: 1rem;
    min-width: 60px;
}

.job-details {
    flex: 1;
}

.job-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.job-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: capitalize;
}

.job-card button {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem 0.5rem;
}

.job-card button:hover {
    background: #fee2e2;
    border-radius: 4px;
}

/* Update Toasts */
.scheduler-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.update-toast {
    background: #1e1b4b;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.update-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #818cf8;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}