/* Toast notification styles */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 640px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
}

/* Toast animations */
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.task-loading {
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.task-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(147, 197, 253, 0.25);
    border-top-color: #2d5da1;
    border-radius: 50%;
    animation: taskSpin 0.75s linear infinite;
    vertical-align: middle;
}

.task-spinner-small {
    width: 14px;
    height: 14px;
    border-width: 2px;
    margin-right: 7px;
}

@keyframes taskSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}
