body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafd;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 50px -10px #d7eaff77;
}
h1 {
  margin-bottom: 30px;
  color: #1356c7;
  text-align: center;
  font-size: 2.4rem;
}
.plot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.plot-card {
  width: 240px;
  min-height: 200px;
  border-radius: 16px;
  box-shadow: 0 2px 14px #eee;
  padding: 22px 18px 20px 18px;
  text-align: center;
  position: relative;
  border: 2.5px solid #eee;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.plot-no {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.status {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 8px 0 10px 0;
}
.status-available {
  background: #d8fae7;
  border-color: #9df5c5;
}
.status-booked {
  background: #fff3cd;
  border-color: #ffe39a;
}
.status-sold {
  background: #fce0e0;
  border-color: #ffb9b9;
}
.status-available .status { color: #119151; }
.status-booked .status { color: #e49e0a; }
.status-sold .status { color: #b93139; }
.button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #1366f2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.button:hover {
  background: #0d44a6;
}
