:root {
  --principal-color: #0d1117;
  --secondary-color: #161b22;

  --principal-accent: #e63946;
  --secondary-accent: #f4a261;

  --text-color: #f8f9fa;
  --secondary-text-color: #8b949e;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--principal-color);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  margin: 0 75px 75px;
  color: var(--text-color);
  font-family: "Nimbus", sans-serif;
}

.scroll-element {
  display: flex;
  justify-content: space-between;
}

.scroll-element a {
  text-decoration: none;
  color: var(--text-color);
}

.title {
  margin-left: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
}

.separator-red {
  border: 5px solid var(--principal-accent);
  border-radius: 32px;
  height: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container-body {
  overflow-y: scroll;
  scrollbar-color: #30363d transparent;
  scrollbar-width: thin;
  height: 400px;
  width: 80%;
  display: flex;
  flex-direction: column;
  border: 1px solid #30363d;
  border-radius: 4px;
  margin-left: 50px;
  align-self: center;
}

table {
  border-collapse: collapse;
}

.user-table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #1c2128;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: sticky;
  top: 0;
}

th {
  text-align: left;
  padding: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b949e;
  border-bottom: 1px solid #30363d;
}

td {
  padding: 14px;
  border-bottom: 1px solid #21262d;
}

tr {
  transition: 0.2s ease;
}

tr:hover {
  background: #1c2128;
  cursor: pointer;
}
