/* Toastify custom styles - Preline Soft Color Variants */
.toastify {
    padding: 16px 20px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
    position: fixed;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    max-width: 400px;
    z-index: 2147483647;
    border: 1px solid;
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: currentColor;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: 0.5;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
}

.toastify-right {
    right: 20px;
}

.toastify-left {
    left: 20px;
}

.toastify-top {
    top: 20px;
}

.toastify-bottom {
    bottom: 20px;
}

/* Soft color variants - Success (Teal) */
.toastify-success {
    background: #ccfbf1;
    border-color: #5eead4;
    color: #134e4a;
}

/* Soft color variants - Error (Red) */
.toastify-error {
    background: #fee2e2;
    border-color: #fecaca;
    color: #7f1d1d;
}

/* Soft color variants - Info (Blue) */
.toastify-info {
    background: #dbeafe;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* Soft color variants - Warning (Yellow) */
.toastify-warning {
    background: #fef9c3;
    border-color: #fef08a;
    color: #713f12;
}
