html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100%;
    margin: 0;
    font-family: verdana;
    font-weight: bold;
}

#additionalInfo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    background-color: #3367D6;
    color: white;
    padding: 0.5em;
    overflow: hidden;
}
#contentContainer {
    padding: 0.2em;
    margin: 0;
    position: absolute;
    top: 2.5em;
    left: 0;
    right: 0;
    bottom: 3.5em;
}

.content {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

@media (min-width: 600px) {
    #graphContent {
        width: 58%;
        float: right;
    }

    #gadgetContent {
        width: 37%;
        float: left;
    }
}

.channelName {
    color: crimson;
}

.clientName {
    color: blue;
}

ul {
    padding: 0;
    padding-left: 1em;
    margin: 0.2em;
}

#install {
    padding: 0.2em;
    margin: 0.2em;
    background-color: #04AA6D;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
}
.menuIcon {
    float: right;
    padding: 0.1em;
    margin: 0.1em;
}
#menuIconDiv {
    float: right;
    width: 25%;
}
#menuIconDivInner {
    float: right;
}
#menuDiv {
    z-index: 2;
    position: absolute;
    top: 2em;
    right: 0;
    margin-top: 0.5em;
    padding: 0.2em;
    padding-top: 0.5em;
    background-color: #9cbcff;
    color: black;
}

#contentButton {
    display: inline-block;
    font-size: 2em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    padding: 0;
    padding-bottom: 0.2em;
    padding-top: 0.2em;
    margin: 0;
}

.button {
    padding: 0.2em;
    margin: 0.2em;
    background-color: #04AA6D;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
}

.graphButton {
    padding: 0;
    margin: 0;
    font-size: 2em;
    display: inline-block;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    background-color: #04AA6D;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    width: 32%;
    height: auto;
}
.graphButton:disabled {
    background-color: #04aa6d8f;
    color: white;

}
#cDate {
    text-align: center;
}

.hidden {
    display: none !important;
}
.rotating{
    animation: rotation infinite 2s linear;
 }
 
 @keyframes rotation{
   from{
     transform:rotate(0deg);
   }
   
   to{
     transform:rotate(360deg);
   }
 }
 .center {
    text-align: center;
 }
 #userCountDiv {
    float: left;
    width: 25%;
 }
 #dataDateTime {
    width: 50%;
    margin: auto;
    display: inline-block;
 }
 .selected {
    color: darkgray;
 }