/* Toast container */
.toastify-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* Individual toast */
.toastify {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(30px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 400px;
    justify-content: flex-start;
    font-size: 15px;
    font-weight: 500;
}

/* Show toast */
.toastify.show {
    opacity: 1;
    transform: translateX(0);
}

/* Hide toast */
.toastify.hide {
    opacity: 0;
    transform: translateX(50px);
}

/* Toast success type */
.toastify.success {
    border-left: 4px solid #4CAF50;
}

/* Toast error type */
.toastify.error {
    border-left: 4px solid #f44336;
}

/* Toast warning type */
.toastify.warning {
    border-left: 4px solid #FFC107;
}

/* Toast info type */
.toastify.info {
    border-left: 4px solid #2196F3;
}

/* Icon style */
.toastify-icon {
    margin-right: 12px;
    font-size: 14px;
}

/* Toast message text */
.toastify-message {
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.4;
}