body {
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
  }

  .container-fluid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .disco-lights {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, #ffcc00, #ff00ff, #00ffcc, #ffcc00);
    background-size: 400% 400%;
    opacity: 0.6;
    animation: rotateColors 10s linear infinite;
    z-index: -1; /* Push behind content */
  }

  @keyframes rotateColors {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }

  .dance-floor {
    background-color: #333;
    border: 5px solid #fff;
    border-radius: 10px;
    overflow: hidden;
  }

  .video-player {
    width: 100%;
    height: 100%;
    background-color: #000;
  }

  .chat-section, .queue-section {
    position: relative;
    flex-direction: column;
  }

  .chat-container h2, .queue-container h2 {
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    animation: colorChange 10s linear infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1rem;
  }

  .chat-list, .queue-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: calc(100% - 50px); /* Adjusted for input group height */
  }

  .chat-list li, .queue-list li {
    background-color: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 8px 12px;
    color: white;
    position: relative;
    font-size: 1rem; /* Adjust font size as needed */
  }

  .chat-list li::before, .queue-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    border: 5px solid transparent;
    border-right-color: #1a1a1a;
  }

  .input-group input[type="text"] {
    flex: 1; /* Take remaining space */
    padding: 8px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px 0 0 5px;
  }

  .input-group button {
    padding: 8px 16px;
    border: none;
    background-color: #ffcc00;
    color: #000;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
  }

  .input-group button:hover {
    background-color: #ff00ff;
    transform: scale(1.02);
  }

  .btn-custom, .btn-custom-inverted {
    display: block;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.1s ease;
  }

  .btn-custom {
    background-color: #ffcc00;
    color: #000;
  }

  .btn-custom:hover {
    background-color: #ff00ff;
    transform: scale(1.02);
  }

  .btn-custom-inverted {
    background-color: #41f298;
    color: #000;
  }

  .btn-custom-inverted:hover {
    background-color: #ffcc00;
    transform: scale(1.02);
  }

  .guest-counter {
    position: fixed;
    top: 10px;
    right: 14px;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-sizing: border-box;
    z-index: 1000;
    animation: colorChange 10s linear infinite;
	letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }  
  
  .sessionIdContainer {
    position: fixed;
    top: 10px;
    left: 14px;
	width: 250px;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-sizing: border-box;
    z-index: 1000;
    animation: colorChange 10s linear infinite;
	letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .header {
    margin-top: 10px;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-sizing: border-box;
    z-index: 1000;
    animation: colorChange 10s linear infinite;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  @keyframes colorChange {
    0%, 100% {
      background-color: rgba(255, 204, 0, 0.5);
    }
    25% {
      background-color: rgba(255, 0, 255, 0.5);
    }
    50% {
      background-color: rgba(0, 255, 204, 0.5);
    }
    75% {
      background-color: rgba(255, 0, 204, 0.5);
    }
  }

  .chat-container,
  .queue-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
  }

  .chat-list-container,
  .queue-list-container {
    flex: 1;
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 0 10px; /* Optional: Add padding for better spacing */
  }

  .input-group {
    margin-top: auto; /* Push the form items to the bottom */
    position: sticky;
    bottom: 0;
    z-index: 1;
    padding-top: 10px;
  }

  .chat-section,
  .queue-section {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  @keyframes marquee {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-100%);
    }
  }

  @keyframes neon {
    0% {
      color: #ff00ff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    25% {
      color: #00ffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
      color: #ffff00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    75% {
      color: #00ff00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    100% {
      color: #ff00ff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
  }

  .marquee {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .marquee span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 60s linear infinite, neon 8s ease-in-out infinite;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    letter-spacing: 8px;
    text-transform: uppercase;
  }