#messageContainer {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 300px;
    text-align: center;
}

.message {
    /* width: 150px; */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

.message.success {
    /* background-color: #67c23a; */
    background-color: rgb(240, 249, 235);
    color: #67c23a;
}

.message.error {
    background-color: #fef0f0;
    color: #f56c6c;
}

.message .close-btn {
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}