.task-queue-toasts {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 280px;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-toast {
    background: rgba(40, 40, 40, 0.95);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    font-size: 13px;
}

.task-toast-title {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.2;
}

.task-toast-time {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.task-toast-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.task-toast-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transition: width 0.2s linear;
}
