
  .surah-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #0b3928;
    border-top: 1px solid #fff;
    border-radius: 0;
    font-family: Arial, sans-serif;
  }

  .surah-menu a,
  .surah-menu a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 150px;
    min-height: 48px;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: #0b3928;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }

  .surah-menu a:last-child {
    border-right: 0;
  }

  .surah-menu a:hover {
    background: #155239;
  }

  .surah-menu a.surah-menu-download {
    background: #c9ad58;
    color: #000;
  }

  .surah-menu a.surah-menu-download:hover {
    background: #dcc477;
  }

  .surah-menu a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -4px;
    text-decoration: underline;
  }

  @media (max-width: 480px) {
    .surah-menu a {
      flex-basis: 50%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }