
   
    h1 {
      color: #2c3e50;
      margin-bottom: 20px;
    }

    .search-box {
      margin-bottom: 20px;
    }

    input {
      padding: 10px;
      font-size: 16px;
      border: 2px solid #2c3e50;
      border-radius: 8px;
      outline: none;
      width: 220px;
      margin-right: 8px;
    }

    button {
      padding: 10px 16px;
      font-size: 16px;
      background-color: #2c3e50;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background-color: #34495e;
    }

    #results {
      margin-top: 20px;
      padding: 20px;
      max-width: 350px;
      text-align: center;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    #results h2 {
      margin: 0 0 10px;
      text-transform: capitalize;
      color: #2c3e50;
    }

    #results img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin: 10px 0;
    }

    #results p {
      margin: 4px 0;
      font-size: 14px;
    }

    .error {
      color: red;
      font-weight: bold;
    }
