﻿.toast {
    position: fixed;
    top: 40px;
    right: 20px;
    background-color: rgb(8, 110, 130, 0.6 );
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    font-family: sans-serif;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in-out;
}

    .toast a {
        color: black;
        text-decoration: underline; /* Optional: keeps the link styled as a link */
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
