.tl-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 20px;
    z-index: 9999;
}

.tl-toast {
    background: rgba(51, 51, 51, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    margin-bottom: 10px;
    min-width: 250px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.3s ease forwards;
}

.tl-toast.success {
    background: rgba(40, 167, 69, 0.9);
}

.tl-toast.error {
    background: rgba(220, 53, 69, 0.9);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}