/* ----------- Banner CSS - Start ------------------- */
.menu_list_sections {
    width: 100%;
    height: 40px; /* Set fixed height */
    overflow: hidden;
    position: relative;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Sliding banner */
  .sliding-banner {
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
  }
  
  /* Message container */
  .message-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: slide 25s infinite linear;
  }
  
  /* Message item */
  .message-item {
    display: inline-block;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
  }
  
  /* Sliding animation */
  @keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  /* Ensure content below starts immediately */
  .menu_list_sections + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  