/* Toast notification styling - Full Width */
.toast-message {
    position: fixed;
    top: -50px; /* Hidden initially */
    left: 0;
    width: 100%; /* Full width */
    background-color: rgba(176, 31, 23, 0.95); /* Red background */
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    z-index: 10000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: top 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

/* Show toast animation */
.toast-message.show {
    top: 0; /* Moves down into view */
    opacity: 1;
}
