@font-face {
  font-family: "Inter";
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter@5.1.0/files/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter@5.1.0/files/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

:root {
  --font-family: "Inter", sans-serif;
  --primary-color: #4f46e5;
}

.sc-table {
  font-family: var(--font-family);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  text-align: left;
  border-radius: 5px;
  overflow: hidden;
  color: #333;
}

.sc-thead {
  background-color: var(--primary-color);
  color: #ffffff;
}

.sc-thead .sc-th {
  padding: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.sc-tbody .sc-tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.sc-tbody tr:hover {
  background-color: #f5f5f5;
}

.sc-td {
  padding: 12px 20px;
  font-size: 14px;
  color: #555;
  vertical-align: middle;
}

.sc-tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.sc-table-container::-webkit-scrollbar {
  height: 8px;
}

.sc-table-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.sc-table-container::-webkit-scrollbar-thumb:hover {
  background: #999;
}
