.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white !important;
    color: #333;
    padding: 12px 24px 12px 50px; /* Extra left padding for icon */
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99999;
    animation: fadeInOut 3s ease-in-out;
    border-left: 10px solid #0f766e;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 12px;
}

.toast-message::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    /*background-image: url('https://img.icons8.com/?size=100&id=70yRC8npwT3d&format=png&color=000000');*/
    background-image: url("/assets/images/tick.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

    .toast-message.error {
        border-left: 10px solid #f44336;
        color: #333;
        font-size: 12px;
    }

.toast-message.error::before {
    background-image: url('https://img.icons8.com/?size=100&id=63688&format=png&color=000000');
}

@keyframes fadeInOut {
    0% { opacity: 0; bottom: 0; }
    10% { opacity: 1; bottom: 20px; }
    90% { opacity: 1; bottom: 20px; }
    100% { opacity: 0; bottom: 0; }
}