body {
    font-family: Arial, sans-serif;
    background: #f2f4f7;
    padding: 2rem;
  }

  .search-container {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: auto;
    background: white;
    border-radius: 50px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .search-container input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
  }

  .search-container button{
    padding: 0.8rem 1.2rem;
    border: none;
    background: #0077cc;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .search-container button:hover {
    background: #005fa3;
  }

  /* Result box */
  .results {
    max-width: 500px;
    margin: 1rem auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    padding: 1rem;
  }

  .results p {
    padding: 0.8rem 1rem;
    margin: 0.3rem 0;
    background: #f9f9f9;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.2s;
  }

  .results p:hover {
    background: #e6f2ff; /* light blue highlight on hover */
  }

  /* Mobile tweaks */
  @media (max-width: 400px) {
    .search-container {
      flex-direction: column;
      border-radius: 15px;
    }
    .search-container button {
      width: 100%;
      border-radius: 0 0 15px 15px;
    }
    .search-container input {
      width: 100%;
      border-radius: 15px 15px 0 0;
    }
  }