body {
    margin: 0 auto;
    padding: 0px;
    text-align: center;
    width: 100%;
    font-family: "Myriad Pro", "Helvetica Neue", Helvetica, Arial, Sans-Serif;
    background-color: #0b181d;
    color: #555e62;
}

#wrapper {
    margin: 0 auto;
    padding: 0px;
    text-align: center;
    height: 100vh;
}

#wrapper h1 {
    margin-top: 50px;
    font-size: 45px;
    color: white;
}

#wrapper p {
    font-size: 16px;
}

#logout_form input[type="submit"] {
    width: 250px;
    margin-top: 10px;
    height: 40px;
    font-size: 16px;
    background-color: #EF233C;
    border: none;
    box-shadow: 0px 4px 0px 0px #D90429;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

#form_wrapper {
    /* margin: 0 auto; */
    /* margin: 0 30px 0 30px; */
    max-width: 300px;
    margin-top: 10%;
    display: inline-block;
    text-align: center;
    border-radius: 7px;
    overflow: hidden;
}

#form_wrapper img {
    width: 300px;
}

#signin_frm {
    background-color: #EDF2F4;
    padding: 20px;
    margin: 0px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px #000000;
    text-align: center;
}

#signin_frm>* {
    display: block;
    margin: 0 auto;
}

#signin_frm input[type="password"] {
    width: 250px;
    margin-top: 10px;
    height: 40px;
    font-size: 16px;
    text-align: center;
}

#signin_frm input[type="submit"] {
    width: 250px;
    margin-top: 10px;
    height: 40px;
    font-size: 16px;
    background-color: #EF233C;
    border: none;
    box-shadow: 0px 4px 0px 0px #D90429;
    color: white;
    border-radius: 3px;
}

#signin_frm p {
    margin: 0px;
    margin-top: 15px;
    font-size: 17px;
    font-weight: bold;
}

/* Main page */
#item_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    gap: 30px;
}

.item {
    padding: 24px 30px;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
}

.item>div {
    flex-grow: 1;
    gap: 10px;
    margin-top: 10px;
}

.item, .item>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.item img {
    max-width: 140px;
}

.item p {
    margin: 0;
}

.item h2 {
    margin: 0;
}

.item .temperature {
    font-size: 4em !important;
}
.item .humidity-pressure {
    font-size: 1.2em !important;
}
.color-highlight {
    color: #EDF2F4;
}

.item-status {
    margin:0;
}

.connstatus {
    font-size: 0.8em;
    color: #7ac189;
}

.connstatus.disconnected {
    color: #c17a7a !important;
}

#pellet-image {
    margin: 0 auto;
    width: 180px;
    height: 180px;
    background-size: contain;
    transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.pellet-image-on {
    background-image: url('images/pellet/pellet_on.gif');
}

.pellet-image-standby {
    background-image: url('images/pellet/pellet_standby.gif');
}

.pellet-image-off {
    background-image: url('images/pellet/pellet_off.gif');
}

@media only screen and (max-width: 600px) {
    #wrapper {
        display: block;
    }
  }