body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #f6f8fa;
  color: #333;
}

header {
  text-align: center;
  padding: 20px;
  background: #2b6cb0;
  color: white;
}

#meta-info {
  font-size: 0.9em;
  opacity: 0.9;
}

#search {
  display: block;
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body h2 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #2b6cb0;
}

.card-body p {
  margin: 4px 0;
  font-size: 0.9em;
}

.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-size: 0.8em;
  text-transform: capitalize;
}

.status.tersedia { background: #38a169; }
.status.disewa { background: #d69e2e; }
.status.servis { background: #e53e3e; }
