.cv-toastify {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 200px;
    max-width: 350px;
    padding: 16px 24px;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(40px);
}

.cv-toastify.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cv-toastify-info {
    background: #0073aa;
}

.cv-toastify-success {
    background: #46b450;
}

.cv-toastify-error {
    background: #dc3232;
}