
  .search-box {
    display: flex;
    max-width: 320px;
    margin: 1px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
  }

  .search-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 18px;
    color: #006600;
    border: none;
    outline: none;
  }

  .search-button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 0 24px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .search-button:hover {
     background-color: #006600;
  }

  x@media (max-width: 600px) {
    .search-input {
      font-size: 16px;
      padding: 14px 16px;
    }

    .search-button {
      font-size: 19px;
      padding: 0 20px;
    }
  }

