/* From Uiverse.io by aadium */
/* sites */
.menu-button {
    position: relative;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .news-button {
    background-color: #575757;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    font-size: 13px;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    background-color: #212121;
    border: 2px solid #575757;
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }

  .dropdown-content a {
    color: #e8e8e8;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
  }

  .dropdown-content a:hover {
    background-color: #575757;
    color: #212121;
  }

  .dropdown-content a:focus {
    background-color: #212121;
    color: #e8e8e8;
  }

  .dropdown-content #top:hover {
    border-radius: 0px 13px 0px 0px;
  }

  .dropdown-content #bottom:hover {
    border-radius: 0px 0px 13px 13px;
  }

  .menu-button:hover news-button {
    border-radius: 15px 15px 0px 0px;
  }

  .menu-button:hover .dropdown-content {
    display: block;
  }


  /* main  */
  .sports-menu {
    width:100%;
    padding-left: 10px;
    padding-top: 10px;
  }

  .menu-button {
    display: inline-block;
  }


  .nav-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .team-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 4px;
    flex: 1;
  }
  .team-nav::-webkit-scrollbar { display: none; }
  .team-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 0.5px solid var(--color-border-tertiary, #e5e5e5);
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 56px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
  }
  .team-btn:hover { background: #f5f5f5; transform: translateY(-1px); }
  .team-btn img { width: 32px; height: 32px; object-fit: contain; }
  .team-btn .team-label {
    font-size: 10px;
    color: #666;
    white-space: nowrap;
    font-weight: 500;
  }
  .scroll-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
  }
