.toast-message {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    z-index: 1000; /* Ensure it is above other elements */
}
.new-message {
    position: fixed;
    bottom: 0; /* Position it at the bottom */
    display: none;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0; /* Adjusted for bottom positioning */
    z-index: 1000; /* Ensure it is above other elements */
}