@import url('css/header.css');
@import url('css/sidenav.css');
@import url('css/tables.css');

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #BBBBBB;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 64px 1fr;
    grid-template-areas:
    "header header"
    "sidenav content";
    transition: grid-template-columns 0.3s ease;
}

body.collapsed {
    grid-template-columns: 0 1fr;
}

body div {
    box-shadow: 0 6px 12px -3px #333333;
    /* border-radius: 30px; */
}

.content {
    position: relative;
    grid-area: content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4em;
    background-color: #EEEEEE;
    margin: 1rem 1rem;
    border-radius: 1.25rem;
    text-align: center;
    padding: 1em;
}

.content .navigation {
    position: absolute;
    top: 0;
    left: 1rem;

    box-shadow: none;
}

.navigation a {
    text-decoration: none;
    color: #2563eb;
}

.content h1 {
    margin-top: 1em;
    margin-bottom: 0;
}

.content-container h2 {
    text-align: left;
    padding: 0.5rem 1rem;
    margin-top: 0;
    margin-bottom: 0;
    background-color: cornflowerblue;
    color: #111111;
    border: solid #333333;
    /* border-bottom-style: none; */
}

.content-container h2 select {
    float: right;
    width: 200px;
    padding: 5px;
    background-color: hsl(0, 0%, 90%);
    font-weight: bold;
    margin-right: 10px;
    border-radius: 30px;
}

.content-container img {
    height: 400px;
    /* max-height: 400px;
    width: 100%; */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.content-container svg {
    height: 400px;
    width: auto;
    /* max-height: 400px;
    width: 100%; */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
