/* CSS for success_notify */
.toast-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s ease-in-out;
}

.toast-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: pulse 1s infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Adds shadow when visible */
}

/* Pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Slight increase in size */
    }
    100% {
        transform: scale(1);
    }
}

.toast-message i {
    margin-right: 8px;
}
