.message-panel {
    overflow: auto;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 4%;
    width: 90%;
    max-height: 90%;
    display: block;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    transform: translateX(-50%);
    transition : all 0.2s ease-out 0.01s;
    border: 1px solid #B02A2A;
    padding: 1rem;
}

.message-panel-hidden {
    top: -6%;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.message-panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
