.toastify {
    background: #ffffff;
    color: #222;
    border-radius: 14px;
    padding: 18px 20px;
    min-width: 360px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
/* Content Layout */
.toastify .toastify-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
/* Icon */
.toastify .toast-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}
/* Text */
.toastify .toast-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
.toastify .toast-text p {
    margin: 3px 0 0;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}
/* Close */
.toastify .toast-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 18px;
    cursor: pointer;
    color: #777;
}
/* Fixed Bottom Right */
.toastify.toastify-right {
    position: fixed;
    right: 20px;
    bottom: 20px;
    top: auto;
    left: auto;
}
/* Progress Wrapper */
.toastify .toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}
/* =========================
PROGRESS BAR
========================= */
.toastify .toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}
/* Progress Line */
.toastify .toast-progress::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: currentColor;
}
/* ACTIVE ANIMATION */
.toastify .toast-progress.active::before {
    animation: toast-progress-animation 3s linear forwards;
}
/* SUCCESS */
.toastify.success .toast-icon,
.toastify.success .toast-progress::before {
    background: #16a34a;
}
/* ERROR */
.toastify.error .toast-icon,
.toastify.error .toast-progress::before {
    background: #dc2626;
}
/* WARNING */
.toastify.warning .toast-icon,
.toastify.warning .toast-progress::before {
    background: #f59e0b;
}
/* INFO */
.toastify.info .toast-icon,
.toastify.info .toast-progress::before {
    background: #06b6d4;
}
/* Progress Animation */
@keyframes toast-progress-animation {
    100% {
        right: 100%;
    }
}