#container {
    min-height: 85vh;
}

.bold {
    font-weight: bold;
}

.hint {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px 0 15px;
}

.select-grid select {
    margin-bottom: 10px;
}

.horiz {
    width: 235px;
    height: 2px;
    background: black;
    margin-top: 30px;
    margin-bottom: 20px;
    border:0;
}

#head-card {
    background: #EAE4E1;
    width: 265px;
    height: 105px;
    display: grid;
    align-items: center;
    border-radius: 10px;
    margin-top: -60px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    padding-left: 15px;
    padding-right: 15px;
}

#head-card h1 {
    font-size: 21px;
}

.info-form {
    background: #dcdcdc;
    display: grid;
    width: 265px;
    justify-content: center;
    justify-items: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.select-grid {
    display: grid;
    /*padding-bottom: 20px;*/
}

.select-grid label {
    padding-bottom: 8px;
    font-size: 15px;
    font-weight: bold;
}

.select-grid input {
    height: 35px;
    width: 215px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid black;
    background: white;
}

.select-grid select {
    height: 35px;
    width: 235px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid black;
    background: white;
}

.thermal-card {
    width: 265px;
    padding: 30px;
    text-align: center;
    background: #dcdcdc;
    margin-top: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.hoz-bar {
    width: 235px;
    height: 4px;
    background: black;
    margin-top: 30px;
}

.therm-title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 15px;
}

.calc-button {
    background: #397019;
    color: white;
    height: 35px;
    width: 115px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin: 30px auto 0 auto;
}

.reset-button {
    background: #397019;
    color: white;
    height: 35px;
    width: 155px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    display: grid;
    align-items: center;
    text-decoration: none;
}

.select-grid select:focus, .select-grid input:focus, .info-form button:focus {
    outline: 1px solid black;
}

.info-form button:focus:not(:focus-visible) {
    outline: none !important;
}

.info-label h2 {
    font-size: 15px;
    width: 275px;
    text-align: left;
}

.info-label {
    margin-bottom: 35px;
}

.border-bot {
    border-bottom: 3px solid black;
    margin-bottom: 25px;
    padding-bottom: 30px;
}

#plant_type {
    margin-bottom: 15px;
}

.ui-menu {
    background: white;
    border: 1px solid;
    list-style-type: none;
    width: auto;
    max-width: 325px;
    max-height: 250px;
    overflow-y: scroll;
    font-size: 13px;
    line-height: 20px;
}

.ui-menu li {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
}

.ui-menu li:hover {
    background: #3297FD;
    color: white;
}

.ui-helper-hidden-accessible {
    display: none;
}

.browse-container {
    margin: 50px 20px 0 20px;
}

.container-heading {
    text-align: center;
    margin-bottom: 15px;
}

.browse-button-group {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 20px 0 0 0;
}

.browse-button {
    background: #397019;
    color: white;
    width: 225px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none!important;
    padding: 10px 10px;
    font-size: 14px;
    display: grid;
    justify-content: center;
}

.browse-button:focus{
    text-decoration: none!important;
    outline: 1px solid black;
}

.browse-button:focus:not(:focus-visible) {
    outline: none !important;
}


@media only screen and (min-width: 375px) {

    .horiz {
        width: 270px;
    }

    .info-label h2 {
        width: 325px;
    }

    #head-card {
        width: 325px;
        height: 125px;
        margin-top: -75px;
    }

    .info-form, .thermal-card {
        width: 325px;
    }

    #head-card h1 {
        font-size: 24px;
    }

    .select-grid input {
        height: 35px;
        width: 250px;
    }

    .select-grid select {
        height: 35px;
        width: 270px;
    }

    .select-grid label, .info-form button {
        font-size: 16px;
    }

    #container {
        margin-bottom: 100px;
    }

    .hoz-bar {
        width: 250px;
    }

    .therm-title {
        font-size: 21px;
    }

    .therm-unit {
        font-size: 19px;
    }

}

@media only screen and (min-width: 425px) {

    #head-card {
        width: 340px;
        padding-right: 23px;
        padding-left: 23px;
        margin-top: -65px;
    }

    .info-form, .thermal-card {
        width: 340px;
    }

    .info-label h2 {
        width: 350px;
    }
}

@media only screen and (min-width: 600px) {
    #head-card {
        width: 500px;
    }

    .info-form {
        width: 385px;
    }
}

@media only screen and (min-width: 768px) {

    #head-card h1 {
        font-size: 27px;
    }

    #container {
        margin-bottom: 150px;
    }

    .info-label h2 {
        width: 600px;
        font-size: 16px;
    }


}

@media only screen and (min-width: 1440px) {
    #head-card {
        margin-top: -70px;
    }
}