body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff0f5;
  color: #333;
}

header {
  background-color: #f8c8dc;
  padding: 1rem;
  text-align: center;
  color: #660033;
}

.tabs {
  display: flex;
  justify-content: center;
  background-color: #f4c2d7;
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.tab-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.tab-item:hover,
.tab-item.active {
  background-color: #ffe6f0;
  border-bottom: 3px solid #cc6699;
}

main {
  padding: 1.5rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background-color: #fff7fb;
}

th,
td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

h3 {
  color: #b30059;
}

ul {
  padding-left: 1.2rem;
}
