.page-title {
  text-align: center;
  color: #6a1b5d;
  margin-bottom: 40px;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
  color: #4a0d3a;
}
hn {
  color: #4a0d3a;
  font-weight: bold;
}
.filter-item label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.filter-item select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Summary */
.summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.house-card {
  text-align: center;
  color: #6a1b5d;
}

.house-card i {
  font-size: 60px;
  margin-bottom: 10px;
}

.payment-info .info-box {
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Payment History */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.payment-history {
  max-width: 600px;
  margin: auto;
}

.payment-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amount.positive {
  color: green;
  font-weight: bold;
}
h2 {
  color: #4a0d3a;
}
p {
  color: #666;
  font-style: italic;
}
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #6b1e5e;
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(107, 30, 94, 0.3);
  width: auto;
  margin-bottom: 20px;
}

.btn-register:hover {
  background-color: #8c246b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 30, 94, 0.4);
}
.register-btn-wrapper {
  display: flex;
  justify-content: center;
}
