#delish-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delish-toast {
    color: #fff;
    padding: 16px 18px;
    border-radius: 10px;
    min-width: 260px;
    max-width: 340px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.35s ease;
}

.delish-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.delish-toast.hide {
    opacity: 0;
    transform: translateX(120%);
}


/* Types */

.delish-success {
    background: #006633;
    color: #fff !important;
}

.delish-error {
    background: #d32f2f;
    color: #fff !important;
}


/* Button */

.delish-toast-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.delish-toast-btn:hover {
    opacity: 0.9;
}