html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    /*height: 100%;*/
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #2D302E;
    font-family: 'DM-sans';
    background-image: url("assets/icon.png");
    /*overflow: hidden;*/
    background-repeat: repeat-x;
    background-position: center;
}

@font-face {
    font-family: 'DM-sans';
    src: url('assets/dmsans_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

input:focus {
    outline: none !important;
}

button:focus {
    outline: none !important;
}

.btn {
    border: none;
    display: inline-block;
    padding: 12px 32px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    background-color: #68BA90;
    transition-duration: 0.4s;
    border-radius: 55px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 12px;
}

.btn:hover {
    background-color: #007c38;
    cursor: pointer;
}

.btn[disabled] {
    background-color: darkgray;
}

.btn[disabled]:hover {
    cursor:not-allowed;
}

.main {
    width: 90%;
    max-width: 1280px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    padding-top: 50px;
    padding-bottom: 22px;
    padding-left: 12px;
    padding-right: 12px;
    margin: auto;
    margin-top: 22px;
    text-align: center;
    background-color: white;
    overflow-y: auto;
    border-radius: 22px;
}

.body-bg {
    background-color: transparent;
    position: relative;
    margin: 0;
    padding: 0;
    /*width: 100%;
    height: 100%;*/
}

.icon-top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.icon-bottom-right {
    position: absolute;
    right: 0;
    bottom: 0;
}

.device-log {
    width: 100%;
    height: 200px;
    border: solid lightgray 1px;
    border-radius: 10px;
    display: inline-block;
    overflow: auto;
    text-align: left;
    padding-left: 10px;
}

.data-log {
    width: 100%;
    height: 236px;
    border: solid lightgray 1px;
    border-radius: 10px;
    display: inline-block;
    overflow: auto;
    text-align: left;
    padding-left: 10px;
}

.log-ctn {
    display: inline-block;
    width: 95%;
}

.table {
    thead {
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

.table {

    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: lightgray solid 1px;
}

.unit {
    font-size: 12px;
    font-weight: normal;
}

select {
    padding: 8px;
    font-family: 'DM-sans';
    border-radius: 8px;
    padding-left: 10px;
}

select:hover {
    cursor: pointer;
}

select:focus {
    outline: none;
}
.select[disabled]:hover {
    cursor:not-allowed;
}

.paramCtn {
    display: inline-block;
    margin: 12px;
}