    .issue-container {
      width: 120%;
      margin: 20px auto;
    }

    .dropdown {
      border: 1px solid #ccc;
      margin-bottom: 15px;
      border-radius: 5px;
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
    }

    .dropdown summary {
      font-weight: bold;
      font-size: 18px;
      font-family: Arial, sans-serif;
      padding: 10px 15px;
      cursor: pointer;
      background-color: #e0e0e0;
    }

    .dropdown-links {
      display: flex;
      flex-wrap: wrap;
      font-family: Arial, sans-serif;
      padding: 10px 15px;
      gap: 10px;
    }

    .dropdown-links a {
      flex: 1 1 calc(25% - 3px); /* 4 columns */
      text-decoration: none;
      color: #0033cc;
      padding: 8px;
      border: 1px solid #990099;
      text-align: center;
      font-family: Arial, sans-serif;
      border-radius: 4px;
      background-color: white;
    }

    .dropdown-links a:hover {
      background-color: #f0f0ff;
    }