/* Dropdown Styles */
.presenter-dropdown, .management-dropdown, .user-dropdown {
  position: relative;
}
.presenter-dropdown .dropdown-content,
.management-dropdown .dropdown-content,
.user-dropdown .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #232323;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 140px;
  z-index: 100;
  padding: 0;
  margin-top: 2px;
}
.presenter-dropdown.open .dropdown-content,
.management-dropdown.open .dropdown-content,
.user-dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.dropdown-content a:hover {
  background: #2a4d8f;
}
    /* General Body Styles */
    body {
      margin: 0;
      padding: 0;
      background-image: url('assets/img/background.png');
      background-repeat: repeat;
      font-family: Arial, sans-serif;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    /* Ensuring html element also doesn't overflow */
    html {
      overflow-x: hidden;
    }

    /* Navigation Bar */
    .nav {
      width: 100%;
      background-color: #333;
      color: white;
      padding: 10px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      gap: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
    }

    .nav .title {
      font-size: 24px;
      font-weight: bold;
    }

    .nav .links {
      display: flex;
      gap: 25px;
    }

    .nav .links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav .links a:hover {
      text-decoration: underline;
    }

    /* Content Box */
    .box {
      background: white;
      padding: 40px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      max-width: 400px;
      width: 90%;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .logo {
      width: 100%;
      max-width: 200px;
      height: auto;
      margin: 0 auto 20px;
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    h1 {
      margin: 0 0 20px;
      font-size: 24px;
      color: #333;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 100;
    }

    .modal-content {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .modal-close {
      float: right;
      font-size: 18px;
      cursor: pointer;
    }

    .modal-close:hover {
      color: red;
    }

    .modal-body {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .modal-body label {
      font-size: 14px;
      font-weight: bold;
    }

    .modal-body input,
    .modal-body select,
    .modal-body textarea {
      width: 100%;
      max-width: 100%;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      transition: border-color 0.3s ease;
      padding-right: 30px;
      box-sizing: border-box;
    }

    .modal-body input:focus,
    .modal-body select:focus,
    .modal-body textarea:focus {
      border-color: #808080;
      outline: none;
    }

    .modal-footer {
      margin-top: 15px;
      text-align: right;
    }

    .modal-footer button {
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      background-color: #333;
      color: white;
      transition: background-color 0.3s ease;
    }

    .modal-footer button:hover {
      background-color: #555;
    }

    /* Radio Bar */
    .radio-bar {
      width: 100%;
      background-color: white;
      color: black;
      text-align: center;
      padding: 10px 0;
      position: fixed;
      bottom: 0;
      z-index: 10;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .radio-bar .audio-player {
      margin: 0;
    }

    .radio-bar .copyright {
      font-size: 14px;
      color: #333;
      margin-top: 10px;
    }

    /* Notification Styles */
    .notification {
      position: fixed;
      top: 10px;
      right: 10px;
      padding: 15px;
      border-radius: 5px;
      font-size: 16px;
      z-index: 1000;
    }

    .notification.success {
      background-color: green;
      color: white;
    }

    .notification.error {
      background-color: red;
      color: white;
    }
    .stats{
     width: 280px;
      padding-left: 15px;
      margin: 10px auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
    }