#toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    max-width: 350px;
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.25);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
}

.toast-item.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    background-color: #16a34a; 
}
.toast-success i {
    color: white;
}

.toast-error {
    background-color: #dc2626;
}
.toast-error i {
    color: white;
}

.toast-warning {
    background-color: #d97706; 
}
.toast-warning i {
    color: white;
}