/** GLOBAL STYLES **/

:root {
  --text: #1e293b;
  --muted: #222;
  --brand: #E01280;
  --brand-hover: #db2777;
  --background-1: #FAF9F6;
  --background-2: #F0EFEC;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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;
  height: 100vh;
  padding-top: 80px;
  padding-bottom: 32px;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--muted);
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 14px 28px;
  font-size: 16px;
}

button:hover {
  background-color: var(--brand, #e01280);
  color: white;
  border: none;
}

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;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  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 #f1f5f9;
}

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;
}
