* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr 1.5em;
}

.main {
    display: grid;
    grid-template-columns: 12rem 1fr;
    overflow: hidden;
}

.sidebar {
    overflow-y: auto;
    overflow-x: hidden;
}

.content {
    overflow-y: auto;
}

.footer {
    background-color:#C0A985;
    color:white;
    place-items: center;
}

.footer p {
    margin-top: 0;
    font-size: 75%;
}

nav {
    background-color:#C0A985;
}

nav a {
    color: #4F614B;
    font-weight: 900;
    font-size: 1em;
    margin-left: 10px;
    text-decoration: none;
}

button.btn {
    border: 1px solid #ccc;
    background-color: #E2EFDA;
    font-size: 16px;
    width: 10em;
}

select {
    border: 1px solid #ccc;
    background-color: #E2EFDA;
    font-size: 16px;
    padding: 5px;
    width: 10em;
}

table {
    width: 100%;
    border-collapse: collapse; /* Removes space between cells */
    border: none;              /* Removes table outer border */
    margin: 0;                 /* Removes space around the table */
}

th, td {
    padding: 0;                /* Removes space inside cells */
    border: none;              /* Removes cell borders */
}

/* Hide on desktop/large screens */
.mobile-only {
  display: none;
}

/* Show on screens 768px or smaller */
@media screen and (max-width: 900px) {
  .mobile-only {
    display: block;
  }
}