/* NAVBAR */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #1e1e1e;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
    color: #00ff99;
  }

  .categories a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 500;
  }

  .categories a.active,
  .categories a:hover {
    color: #00ff99;
  }

  .nav-center {
    display: flex;
    gap: 10px;
  }

  .nav-center input {
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    width: 200px;
  }

  .nav-center button {
    background-color: #00ff99;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    color: black;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .settings-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
  }

  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }