/* Pastikan blok pencarian berada di kanan */
.block-search {
  display: flex;
  justify-content: flex-end; /* dorong form ke kanan */
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Styling form agar tidak pecah */
.block-search form {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 350px; /* batas lebar */
}

/* Input search */
.block-search input[type="search"] {
  flex: 1;
  border-radius: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
}

/* Tombol */
.block-search input[type="submit"] {
  background-color: #2e7d32;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.block-search input[type="submit"]:hover {
  background-color: #43a047;
}

/* Responsif (HP / tablet) */
@media (max-width: 768px) {
  .block-search {
    justify-content: center; /* di tengah untuk mobile */
  }
}
