body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 20px;
    color: #202124;
  }
  .home-container {
    width: 100%;
  }
  .logos-container {
    text-align: center;
  }

  
  .search-box input:focus {
    border-color: #dfe1e5;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  }

  input[type="text"] {
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 24px;
    font-size: 16px;
  }

  .link {
    font-size: 13px;
    color:#4f4f4f;
  }
  #results {
    max-width: 800px;
    margin: 0 auto;
  }
  .result-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #a1a1a1;
  }
  .result-item a {
    color: #1a0dab;
    font-size: 18px;
    text-decoration: none;
  }
  .result-item a:hover {
    text-decoration: underline;
  }
  .pagination {
    text-align: center;
    margin: 30px 0;
  }
  .pagination button {
    margin: 2px 3px;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #f8f9fa;
    color: #202124;
    cursor: pointer;
  }
  .pagination button.active {
    background: #1a73e8;
    color: white;
    border: 1px solid #1a73e8;
  }
  .favicon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
  }
  .err-msg {
    color:#d93025; 
    font-size:14px; 
    margin-top:6px; 
    display:none;
    text-align: center;
  }
  .desc {
    color:#555;
    margin-top:6px;
    font-size: 14px;
  }
  .footer {
    margin-top: 30px;
    padding-bottom: 25px;
    text-align: center;
    font-size: smaller;
  }
  .footer a {
    text-decoration: none;
    line-height: 1.5;
  }


  /* Umum */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 0 15px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 25px;
  padding: 5px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.search-box:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.search-icon {
  position: absolute;
  left: 15px;
  display: flex;
  align-items: center;
}

.search-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.search-box input {
  flex: 1;
  height: 40px;
  border: none;
  outline: none;
  padding-left: 45px; /* space for icon */
  font-size: 16px;
  border-radius: 25px;
}

.search-box button {
  height: 36px;
  border: none;
  background: #1a73e8;
  color: white;
  border-radius: 20px;
  padding: 0 18px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.3s;
  white-space: nowrap;
}

.search-box button:hover {
  background: #0f5fd3;
}

/* --- Responsif untuk Mobile --- */
@media (max-width: 600px) {
  .search-container {
    margin: 20px 0;
    padding: 0 10px;
  }

  .search-box {
    flex-direction: row;
    padding: 4px 8px;
    border-radius: 20px;
    max-width: 100%;
  }

  .search-icon {
    left: 12px;
  }

  .search-box input {
    font-size: 14px;
    height: 38px;
    padding-left: 40px;
  }

  .search-box button {
    height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* --- Responsif untuk Layar Sangat Kecil (HP Lama) --- */
@media (max-width: 400px) {
  .search-box {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px;
  }

  .search-icon {
    position: absolute;
    top: 12px;
    left: 18px;
  }

  .search-box input {
    width: 80%;
    padding:5px;
    padding-left: 45px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .search-box button {
    width: 100%;
    border-radius: 25px;
  }
}