
#snackbar {
    display: none;
    width: 100%;
    background-color: #efefef; /* Black background color */
    color: #333; /* White text color */
    border: 6px solid #091F30;
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 10px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    bottom: 30px; /* 30px from the bottom */
}

#snackbar h3{
    margin-top: 16px;
    margin-bottom: 16px;
}

#snackbar #close_x{
    color: #000;
    float: right;
    cursor: pointer;
}
