@import "index.css";

header h1 {
  color: #8b2be2;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-radius: 8px;
  overflow: hidden;
}
.data-table thead {
  background: linear-gradient(
    90deg,
    rgba(139, 43, 226, 0.06),
    rgba(11, 94, 215, 0.04)
  );
}
.data-table th,
.data-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.data-table tbody tr:hover {
  background: rgba(11, 94, 215, 0.02);
}

.content-card {
  padding: 1rem;
  border-radius: 8px;
}
