/* Container for the dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown menu */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
  }
  
  /* Show the dropdown when hovered */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Menu items */
  .dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-family: Arial, sans-serif;
  }
  
  /* Styling for header rows */
  .dropdown-content .header-row {
    background-color: #0044cc;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 16px;
    text-align: left;
    border-radius: 8px 8px 0 0;
  }
  
  /* Hover effects for menu items */
  .dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #0044cc;
  }
  
  /* Table structure inside dropdown */
  .dropdown-content table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .dropdown-content th, .dropdown-content td {
    text-align: left;
    padding: 8px;
  }
  
  .dropdown-content th {
    color: #0044cc;
    font-weight: bold;
  }
  
  .dropdown-content td {
    color: #333;
  }
  