
/* Banner Styling */
.page-header-wrapper {
  padding: 40px 20px 20px;
  background: #f8f8f8;
  margin-bottom: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.banner-left h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
  margin: 0;
}
.banner-middle {
  display: flex;
  gap: 12px;
}
.badge {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}
.badge.yellow {
  background: #ffeb99;
  color: #333;
}
.badge.dark {
  background: #333;
  color: #fff;
}
.banner-image img {
  width: 160px;
  height: auto;
  border-radius: 8px;
}

/* Search Box Styling */
.search-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.project-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.room-buttons button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: #f1f1f1;
  border-radius: 6px;
  cursor: pointer;
}
.room-buttons button.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}
input[type="number"],
input[type="text"],
select {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
  min-width: 160px;
}
.toggle-group button {
  padding: 10px 16px;
  border: 1px solid #ccc;
  background: #f0f0f0;
  border-radius: 6px;
  cursor: pointer;
}
.toggle-group button.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.search-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-actions .left-links a {
  margin-right: 12px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}
.search-actions .right-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.map-btn {
  background: #555;
  color: white;
}
.submit-btn {
  background: #007bff;
  color: white;
}
