:root {
  --brand-bg: #f0f2f5;
  --brand-text: #0e2956;
  --row-odd: #f9f9f9;
  --row-even: #e9ecef;
  --row-hover: #d4edda;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--brand-bg);
}

.brand-title {
  color: var(--brand-text);
}

.table-container {
  background-color: #ffffff;
  border-radius: 12px;
}

.table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--row-odd);
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: var(--row-even);
}

.table-hover tbody tr:hover {
  background-color: var(--row-hover);
}

.icon-link {
  font-size: 1.25rem;
  margin-right: 0.25rem;
  color: var(--brand-text);
}

.icon-link:hover {
  color: #0b1f40;
}

.judge-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12rem;
}

@media (max-width: 768px) {
  .table {
    font-size: 0.9rem;
  }
}

.link-wrap {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
