* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #cfe9ff;
}

.container {
  padding: 15px;
}

.header {
  background: #bfe3ff;
  padding: 15px;
  border-radius: 20px;
  position: relative;
}

.header h1 {
  margin: 0 0 12px;
  text-align: center;
}

.home-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #2563eb;
}

.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter input,
.filter select {
  padding: 8px 12px;
  border-radius: 18px;
  border: none;
  outline: none;
}

.total {
  margin-top: 10px;
  font-weight: 600;
}

.table-wrap {
  margin-top: 15px;
  background: white;
  border-radius: 20px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #fdecef;
}

th, td {
  padding: 10px;
  font-size: 13px;
}

tr:nth-child(even) {
  background: #f9fafb;
}

.chip {
  background: #fde2e8;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.status {
  padding: 6px 10px;
  border-radius: 14px;
  border: none;
  background: #e0f2fe;
}
