.message_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, z-index 0s 0.3s;
    color: #fff;
    font-weight: 700;
    font-size: 1.2em;
    padding: 1em;
    text-align: center;
    z-index: 1000;
}

.message_modal.success {
    background: #5db932;
}

.message_modal.danger {
    background: #ff3838;
}

.message_modal.hide {
    opacity: 0;
    z-index: -1;
}