:root {
  --background: hsl(0, 0%, 97%);
  --accent: #3d93f6;
  --green: #33493a;
  --gray: #ada8a8;
}

html {
  height: 100%;
  width: 100%;
  line-height: 1.6;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-columns: 150px auto;
}

.menu {
    padding: 1rem;
    background: var(--background);
    border-right: 1px solid #eee;
}

.content {
    padding: 2rem;
    flex: 1;
}

.content h1 {
    font-size: 24px;
    margin-top: 0;
    padding-top: 0;
}

.footer {
    padding-top: 2em;
    max-width: 100ch;
    border-top: 1px solid #eee;
    margin: 0 auto;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

table {
    font-size: 12px;
    border-collapse: collapse;
    width: 100%;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media screen and (min-width: 768px) {
    table {
        font-size: 16px;
    }
}

th {
    background: var(--background);
    padding: 0.8rem;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: var(--background);
}

.region-selector ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.region-selector li {
    padding-top: 5px;
    padding-top: 5px;
}
