.custom-navbar {
    background-color: #f28c28; /* orange color */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
  }

  .navbar-title {
    white-space: nowrap;
  }

  .navbar-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: normal;
  }

  .navbar-links .home-icon {
    margin-right: 5px;
  }

  /* Responsive tweak if needed */
  @media (max-width: 600px) {
    .custom-navbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .navbar-links {
      margin-top: 5px;
    }
  }