body {
    margin: 0px;
    background-color: lightgreen;
    font-family: sans-serif;
}

.loadingScreen {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,.5);
    z-index: 100;
}
.loader {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);

    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #555555; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal {
    
    border-color: white;
    box-shadow: 1px 2px 3px rgba(0,0,0,.5);
    background-color: white;
    border-radius: 5px;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.modal .title {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
    background-color: green;
    color: white;
    font-weight: bold;
}

.modal .modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}
.modal select {
    font-size: 20pt;
    min-height: 35px;
}
.modal button {
    font-size: 20pt;
    min-height: 35px;
}
.modal input {
    font-size: 20pt;
    min-height: 35px;
}
.modal .modal-close {
    font-size:x-large;
    float: right;
}
.menubar {
    background-color: green;
    color: white;
    height: 70px;   
    position: fixed;     
    width: 100%;
}

.menubar .item {
    margin-top: 8px;
    margin-left: 8px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 5px;
    color: black;
    float: left;    
    display: flex;
    align-items: center;
    justify-content: center;
}
.menubar .item i {
    font-size: 25pt;
    text-align: center;
}
.menubar .item.active {
    background-color: lightgray;
}

.content {        
    padding-top: 70px;
    background-color: white;
    color: black;
}

.content table {
    width: 100%;
}

.content table thead {
    background-color: lightgreen;
}

.content table tr {
    border-bottom: 1px solid lightgray;
    background-color: lightgray;
}
.content table tr td button {
    font-size: 25pt;
    min-height: 40px;
    min-width: 40px;
}
.content table tr td i {
    font-size: 25pt;
}
.content form {
    background-color: lightgray;
}
.content form h1 {
    background-color: lightgreen;
    font-size: 16pt;
}
.content form h1 button {
    font-size: 25pt;
    min-height: 40px;
    min-width: 40px;
}
.content button {
    color: black;
    font-size: 25pt;
    min-height: 40px;
    min-width: 40px;
}
.content button.active {
    background-color: lightgreen;
}
.plantDiv {
    width: 150px;
    min-height: 240px;
    margin: 15px; 
    padding: 5px;
    text-align: center;
    border-color: white;
    box-shadow: 1px 2px 3px rgba(0,0,0,.5);
    background-color: white;
    border-radius: 5px;
}
.plantDiv i {
    font-size: small;
    display: block;
}
.plantDiv .warn {    
    color: red;
}
.plantDiv .photoDiv {
    position: relative;
    height: 200px;
    width: 100%;
    background-size: cover;
}
.plantsShowcaseDiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}