/* Toast Notifications */
._toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

._toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

._toast.removing {
    animation: slideOutRight 0.4s ease-in forwards;
}

._toast-success {
    background: #38a169;
    color: white;
    box-shadow: 0 10px 25px #38a169;
}

._toast-error {
    background: #e53e3e;
    color: white;
    box-shadow: 0 10px 25px #e53e3e;
}

._toast-warning {
    background: #dd6b20;
    color: white;
    box-shadow: 0 10px 25px #dd6b20;
}

._toast-info {
    background: #3182ce;
    color: white;
    box-shadow: 0 10px 25px #3182ce;
}

._toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

._toast-message {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

._toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

._toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    ._toast-container {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 350px;
        right: auto;
    }

    ._toast {
        padding: 14px 16px;

    }
}