body {
  margin:0;
  font-family: Arial;
  background:#111;
  color:#fff;
}

header {
  padding:20px;
  text-align:center;
  background:#1b1b1b;
}

nav {
  display:flex;
  justify-content:center;
  gap:15px;
  padding:12px;
  background:#222;
}

nav a {
  padding:10px 14px;
  background:#2ecc71;
  color:#000;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

nav a.active {
  background:#2ecc71;
  color:#000;
  box-shadow: 0 0 0 2px #7CFF7C inset;
  transform: translateY(-1px);
}

.container {
  padding:20px;
}

.controls {
  display:flex;
  gap:10px;
  margin-bottom:15px;
}

input, select {
  padding:10px;
  border-radius:6px;
  border:none;
}

.card {
  background:#1c1c1c;
  padding:15px;
  margin:10px 0;
  border-radius:10px;
  display:flex;
  gap:15px;
}

.thumb {
  width:120px;
  height:90px;
  overflow:hidden;
  border-radius:8px;
  background:#000;
}

.thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.badge {
  display:inline-block;
  padding:4px 8px;
  border-radius:5px;
  font-size:12px;
  margin-bottom:6px;
}

.available { background:#2ecc71; color:#000; }
.rented { background:#e74c3c; color:#fff; }

.price {
  color:#7CFF7C;
  font-weight:bold;
}

.muted {
  color:#aaa;
  font-size:13px;
}

.button {
  display:inline-block;
  margin-top:8px;
  padding:8px 10px;
  background:#2ecc71;
  color:#000;
  text-decoration:none;
  border-radius:6px;
  font-size:13px;
}