html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--bg-color);
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
}

header {
    z-index: 2;
    background: #ffffff;
    height: 60px;
    text-align: left;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.page-title {
    width: 100%;
    white-space: nowrap;
}

div#container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex: 2;
    background-color: #fff;
    overflow-y: auto;
}

.container {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

h1.main-title {
    padding-right: 30px;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    padding-top: 100px;
    align-items: stretch;
}

h3.plant-name {
    text-decoration: underline;
    font-size: small;
    font-weight: 500;
    font-style: normal;
}

