.message-bar-Container {
    background-color: lightblue;
    font-size: 8pt;
    width: 100%;
    position: relative; /* Position relative to its parent */
    z-index: 2; /* Ensure it's above the following container */
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -50px; /* Adjust based on actual height of messageBar to overlap */
  }
  
  .message-bar-Container button {
    background-color: white;
    border: none;
    border-radius: 15px; /* Rounded corners */
    position: absolute;
    right: 10px; /* Position to the right */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer;
  }
  