.toast-message {
    margin: 12px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999999;
 }
.toast-message .message {
    padding: 12px 24px;
    margin: 6px;
    background-color: var(--light-blue);
    color: #444;
    font-family: var(--basic-font);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    opacity: 1;
}
.toast-message .message.hide {
    opacity: 0;
}