.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.table-container {
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: #f9f9f9;
}

.custom-table th,
.custom-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.custom-table thead {
  background: #444;
  color: white;
}

.status {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.paid {
  background: #28a745;
  color: white;
}

.unpaid {
  background: #dc3545;
  color: white;
}

.btn {
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.primary {
  background: #007bff;
  color: white;
}

.success {
  background: #28a745;
  color: white;
}

.danger {
  background: #dc3545;
  color: white;
}

.btn:hover {
  opacity: 0.85;
}

.table-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.search-box,
.filter-dropdown {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.empty-message {
  text-align: center;
  font-style: italic;
  color: #888;
}
