body {
    font-family: Arial, sans-serif;
    color: rgb(0, 0, 0)
  }
  
  .container {
      position: relative; /* Set position to relative to allow absolute positioning of pseudo-element */
      max-width: 100%;
      overflow: hidden; /* Hide horizontal overflow */
      background-image: url('bba_bandstand3.png'); /* Set the background image */
      background-size: cover; /* Cover the entire container with the background image */
      background-position: center; /* Center the background image */
      padding: 20px; /* Add padding for spacing */
  }
  
  #dynamic-content {
      background-image: url('bba_bandstand3.png');
      position: relative; /* Set position to relative to allow z-index to work */
      z-index: 1; /* Ensure the letter container appears above the overlay */
      display: flex;
      flex-wrap: wrap; /* Allow flex items to wrap */
      justify-content: space-around; /* Distribute items evenly along the main axis */
  }
  
  .container::before {
      content: ''; /* Required for pseudo-elements */
      position: absolute; /* Set position to absolute */
      top: 0; /* Position at the top of the container */
      left: 0; /* Position at the left of the container */
      width: 100%; /* Cover the entire container horizontally */
      height: 100%; /* Cover the entire container vertically */
      background-color: rgba(255, 255, 255, 0.0); /* Set a translucent white overlay */
  }
  
  .letter-container {
      position: relative; /* Set position to relative to allow z-index to work */
      z-index: 1; /* Ensure the letter container appears above the overlay */
      display: flex;
      flex-wrap: wrap; /* Allow flex items to wrap */
      justify-content: space-around; /* Distribute items evenly along the main axis */
  }
  
  .letter-column {
      width: auto;
      margin-bottom: 20px;
      flex-grow: 1; /* Allow the letter containers to grow and shrink based on available space */
  }
  
  .letter-column h2 {
      margin-top: 0;
      border-bottom: 2px solid #333; /* Add a border at the bottom of each letter */
      padding-bottom: 5px; /* Add some padding to create space between the border and the text */
      font-family: 'Roboto', sans-serif; /* Set the font family to Roboto */
      color: rgba(0,0,0, 0.9); /* Set the font color */
      
      
  }
  
  .letter-column ul {
      list-style-type: none;
      padding: 0;
  }
  
  .letter-column ul li {
      margin-bottom: 5px;
  }
  
  .letter-column ul li span {
      text-decoration: none;
      font-family: 'Poppins', sans-serif; /* Set the font family to Roboto */
      font-weight: bold; /* Add bold to the font */
      color: #ffffff; /* Set the font color */
      display: inline-block; /* Make the <a> element a block-level element */
      padding: 1px 7px 1px 7px; /* Add padding around the text */
      background-color: rgba(0, 0, 0, 0.5); /* Set the background color with 70% opacity */
      border: 1px solid black;
      border-radius: 5px; /* Add rounded corners */
  }

  .letter-column ul li a {
    font-size: 1.4em; /* Adjust size as needed */
    margin-left: 10px; /* Add spacing between song title and icon */
    text-decoration: none; /* Remove underline */
}
  
  .letter-column ul li a:hover {
      text-decoration: underline;
      color: #555; /* Set the font color on hover */
  }
  
  .navbar-brand {
      color: rgba(242, 242, 242, 0.5);
      font-weight: bold;
      position: in-line;
      padding: 10px black;
      z-index: 3;
  }
  
  
  /* Toggled styles */
  .dark-mode .letter-column ul li a {
      color: #ffffff;
      background-color: rgba(0, 0, 0, 0.7); /* Set the background color with 50% opacity */
  }
  .dark-mode #mainbk {
      background-color:white;
  }
  
  .dark-mode .container {
      background-color: white;
  }
  
  .dark-mode .letter-column h2  {
      border-bottom: 2px solid #f0f0f0; /* Off-white */
      color: rgba(242, 242, 242);
      text-shadow: -1px -1px 0px black, -1px 1px 0px black, 1px -1px 0px black, 1px 1px 0px black;
      /* background-color:white; */
  }
  
  .dark-mode .navbar-brand {
      color: white;
  }
  
  /* Ensure the button is always clickable */
  #toggleButton {
      position: relative;
      z-index: 1000; /* Ensure it is above other elements */
      padding: 10px 20px;
      background-color: #4f4e4e;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }
  #toggleButton:hover {
      background-color: #8f3737;
  }
  
  
  
  /* This is the CSS for the overlay)*/
  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.9); /* Fully opaque white */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999; /* Ensure overlay is on top of content */
  }
  
  .prompt {
      text-align: center;
  }
  
  .content {
      display: none; /* Hide content initially */
  }
  
  .content.show {
      display: block; /* Show content when password is correct */
  }
  
  /* CSS for button styling */
  .big-button {
        display: inline-block;
        padding: 20px 40px;
        font-size: 24px;
        background-color: #007bff; /* Adjust color as needed */
        color: white;
        text-decoration: none;
        border-radius: 10px;
        transition: background-color 0.3s ease;
      }
  
      .big-button:hover {
        background-color: #0056b3; /* Adjust hover color as needed */
      }
  
  
  #displayText {
    margin-top: 10px;
  }
  
  .playButton {
      z-index: 3;
    width: 20px; /* Adjust the size as needed */
    height: 20px;
    background-color: rgb(10, 154, 25, .3); /* Circle color */
    border-radius: 50%; /* Makes it a circle */
    border: none;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle; /* Align with text */
  }
  
          .playButton:hover {
              background-color: #2cc824; /* Change color on hover */
          }
  
  
  
  textarea {
    width: 300px;
    height: 150px;
    padding: 5px;
    margin-bottom: 10px;
  }
  
  button {
    padding: 5px 10px;
    cursor: pointer;
  }
  
  #displayText {
    margin-top: 10px;
  }

   /* Floating Audio Player */
   #audioContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000; /* Ensures it stays above content */
}

#audioContainer audio {
    flex: 1;
    max-width: 400px;
}

/* Play button inside list items */
.playButton {
    width: 25px;
    height: 25px;
    background-color: rgb(10, 154, 25, 0.6);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.playButton:hover {
    background-color: #2cc824;
}

/* Space for content */
ul {
    margin-top: 60px; /* Prevents content from being hidden behind the player */
}   