body {
  margin:0;
  font-family: Arial;
  /* background-color: MintCream; */ /* The background color for whole body and in the different tabs */
  background-color: GrayScale; /* The background color for whole body and in the different tabs */
  font-size: 16px;
}

/* ############################################################################## */
/* # tablink is a class with all the properties for the buttons at the top menu # */
/* ############################################################################## */
.tablink {
  background-color: #555;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 16pt;
  width: 33.33%; /* Three Tab / Buttons => 1/3 */
}

/* When hovering on the button/tabs */
.tablink:hover {
  background-color: #777;
}

/* ############################################################################## */
/* # tabcontent is a class with all the properties for the "DIV" after the top  # */
/* # menu corresponding to the body area for each top menyu button              # */
/* ############################################################################## */
.tabcontent {
  /* color: MidnightBlue; */ /* The text color in the different tabs */
  color: #1b364d; /* The text color in the different tabs */
  display: none;
  padding-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
  font-size: 12pt;
}

/* ############################################################################## */
/* # Details Tab -Table for showing the History Temperature values              # */
/* ############################################################################## */
table.tbl_details_tab { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; }
table.tbl_details_tab td, th { text-align: left; padding: 6px; }
table.tbl_details_tab tr:nth-child(even) { background-color: #dddddd; }

/* ############################################################################## */
/* # Remove some of the Status and Setting blocks for Desktop PC only           # */
/* ############################################################################## */
 .ShowBlockPcOnly {	 
    display: none;
 }

@media screen and (min-width: 768px) {
 .ShowBlockPcOnly {
    display:block;
 }
}

/* ############################################################################## */
/* # Details Tab -Collapsable/expandable buttons                                # */
/* ############################################################################## */
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  /* background-color: #f1f1f1; */
}


/* ############################################################################## */
/* # Motion Detector Tab - Chart link button                                    # */
/* ############################################################################## */
.motion-detector-link {
  display: inline-block;
  margin-top: 2px;
  padding: 4px 4px;
  background-color: #1b364d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.motion-detector-link:hover {
  background-color: #004c99;
}