#message-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.alert {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    opacity: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;    
    transition: opacity 0.5s ease-out, transform 0.3s ease-out;
    transform: translateY(0);
    position: relative;
}

.alert p {
    padding: 0;
    margin: 0;
}

.message-title {
    font-size: 18px;
    font-weight: 700;
}

.message-text {
    font-weight: 500;
}

.message-icon {
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: #434343;
    font-size: 30px;
    cursor: pointer;
    margin-left: auto;

    display: flex;
    justify-content: start;
    align-items: start;

    padding: 0;
}

.close-btn:hover {
    opacity: 0.7;
}

.message-icon {
    font-size: 22px;
}

.success {
    background-color: #EAF2EB;
    color: #004104;
}

.error {
    background-color: #FBE9E9;
    color: #450000;
}

.warning {
    background-color: #FFF0E7;
    color: #414300;
}

.info {
    background-color: #e7e9ff;
    color: #001345;
}