@import url('https://fonts.googleapis.com/css2?family=Athiti:wght@500&display=swap');

* {
    box-sizing: border-box;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    overflow: hidden;
}

html, body {
    background: none !important;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Athiti', sans-serif !important;
}

.main-dashboard {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    padding: 0;
}

.background-blur {
    position: absolute;
    top: 0px;
    width: 100%;
    background-image: url("https://uhdwallpapers.org/uploads/converted/20/01/14/the-mandalorian-5k-1920x1080_477555-mm-90.jpg");
    filter: blur(5px);
    -webkit-filter: blur(5px);
    height: 100%;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ui-dashboard {
    position: relative;
    height: 85%;
    overflow-y: auto;
    /* border: 1px solid red; */
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(71, 71, 71);
}

.footer > .jumbotron {
    padding: 0px !important;
}

.chart-bg {
    background-color: white;
    /* border-radius: 5px; */
    padding-bottom: 15px;
}

.data-update {
    position: relative;
    border-radius: 5px;
    width: 99%;
    text-align: center;
    margin-top: 5px;
    background-color: white;
}

.place_col {
    margin-top: 10px;
    font-size: 20px;
    background-color: gray;
    color: white;
    border-radius: 20px;
    text-align: center;
    width: 50%;
}

.body_room_col {
    background-color: gray;
    margin-top: 5px;
    width: 100%;
    height: 83%;
    border-radius: 10px;
    text-align: center;
    font-size: 90px;
    text-transform: uppercase;
    padding-top: 8%;
    color: white;
}

.body_light_col {
    background-color: gray;
    margin-top: 5px;
    width: 100%;
    height: 83%;
    border-radius: 10px;
    text-align: center;
    font-size: 120px;
    text-transform: uppercase;
    color: white;
    padding-top: 5%;
}

.graph-bg {
    position: relative;
    width: 99%;
    background-color: white;
    border-radius: 5px;
    height: 575px; /* 43em */
}

input {
    text-align: center;
}

::-webkit-scrollbar {
    width: 5px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
} 