/** GLOBAL STYLES **/
:root {
  --text: #17160F;
  --muted: #6E6C63;
  --muted-2: #9A9890;
  --brand: #E01280;
  --brand-hover: #F23D96;
  --brand-soft: rgba(224,18,128,.07);
  --background-1: #F8F6F2;
  --background-2: #F1ECE3;
  --border: rgba(23,22,15,.12);
  --border-soft: rgba(23,22,15,.07);
  --chrome-base:    #F1EEE8;
  --chrome-raised:  #EAE6DE;
  --chrome-surface: #E2DED5;
  --chrome-border:  #D8D3C8;
  --chrome-border2: #C7C2B5;
  --chrome-text:    #17160F;
  --chrome-muted:   #6E6C63;
  --chrome-faint:   #9A9890;
}
* {
  box-sizing: border-box;
  margin: 0;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ccc transparent; /* Firefox */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, Arial, sans-serif;
  background-color: var(--background-1);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 32px;
  box-sizing: border-box;
}
button {
  background-color: transparent;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: inherit;
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
button:active {
  transform: translateY(-1px);
}
input:focus {
  box-shadow: 0 4px 24px var(--brand);
}
ol, ul {
  list-style: none;
}
hr {
  width: 95%;
  border: none;
  border-top: 1px solid var(--muted);
  margin: 100px 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.2;
}
table {
  width: 100%;
  border-spacing: 0 3px;
  border-collapse: separate;
}
table th {
  text-align: left;
}
table tbody tr {
  background-color: white;
  border-radius: 12px;
}
table tbody tr:hover {
  background-color: var(--background-1);
}
table td {
  font-size: 14px;
  padding: 5px 6px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-soft);
}
table td img {
  border: 1px solid var(--background-2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 50%;
  height: 30px;
}
/** scrollbars **/
*::-webkit-scrollbar {
  display: none;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 1px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #999;
}