/* General Reset */
*, *:before, *:after {
    box-sizing: border-box;
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  /* Body Styles */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    text-align: left;
  }
  
  /* Banner/Header Styles */
  .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #36454F; /* Dark grey */
    color: white;
    padding: 15px;
    font-size: 12px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .banner h1 {
    font-size: 18px;
    margin: 0;
  }
  
  .banner h1 span {
    font-weight: bold;
  }
  
  /* Dropdown Menu Styles */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #36454F; /* Matches banner */
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9; /* Light grey */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    left: 50%; /* Center it under the button */
    transform: translateX(-50%);
    top: 100%;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1; /* Slightly darker grey */
  }
  
  /* Show dropdown menu when hovering */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Footer Styles */

  
  /* Responsive Adjustments */
  @media (orientation: portrait) {
    .banner h1 {
      font-size: 16px; /* Smaller font for portrait mode */
    }
  }
  
  @media (orientation: landscape) {
    .banner h1 {
      font-size: 20px; /* Larger font for landscape mode */
    }
  }
  
  /* Location Bar */

  
  /* Buttons */
  .button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;
  }
  
  .button1 {
    background-color: #f44336; /* Red */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;
  }
  
  .button2 {
    background-color: #366cf4; /* Blue */
    color: white;
    padding: 15px 32px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  }
  
  /* Video */
  #streamVideo {
    display: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    object-fit: contain;
  }
  