
/************************************************************************************************************
 * Copyright (c) 2019 TBS GmbH.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 *
 *  Contributor:
 *    Hamid Arsalan (2019) - Software Developer at TBS GmbH, Kaiserslautern 
 *    Email:  h.arsalan@tbs-technology.de
 *************************************************************************************************************/

html {
    position: relative;
    min-height: 100%;
    min-width: 100%;
}

body{
    font-family: calibri;
    height: 100%;
    width: 100%;
    padding-bottom: 30px;
    background: rgba(211, 211, 211, 0.4);
   
}

.titlebar{
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, black, black);
    text-align: center;  
}

.titlebar h1, h4{
    padding-top: 0px;
    margin-top: 0px;
    color: white;
    vertical-align: top;
}

.mainTable{
    width: 100%;
    height: 800px;   
}

#menuTitle{
    width: 30%;
    height: 30px;
    padding-left: 10px;
    background: lightblue;
}

#menuTitle *{
    padding-top: 0px;
    margin-top: 0px;
}

#pageTitle{
    width: 70%;
    height: 30px;
    text-align: center;
    vertical-align: top;
   
}

#pageTitle *{
    padding-top: 0px;
    margin-top: 0px;
}

.pageTable{
    
    margin-left: auto;
    margin-right: auto;
}

.pageTable *{
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: top;
}

.overviewTable{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.overviewTable tr, .overviewTable td, .overviewTable th {
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid darkred;
   
   
}
.overviewTable thead{
    font-weight: bold;
}


#menuContent{
    width: 30%;
    vertical-align: top;
    padding-left: 10px;
    background: rgba(240, 128, 128, 0.5);
}


#menuContent *{
    padding-top: 0px;
    margin-top: 0px;
}

#menuContent a{
    color: darkred;
    text-decoration: underline;
    font-weight: bolder;
}


#pageContent{
    width: 70%;
    vertical-align: top;
}

#pageContent *{
    padding-top: 0px;
    margin-top: 0px;
}


#pageContent h3, #pageContent h4,  #pageContent p{
  text-align: center;
  align-content: center;
}

.textInput {
    padding: 3px;
    width: 250px;
    border: 1px solid grey;
    border-radius: 5px;
}

.textInputSmall {
    padding: 3px;
    width: 150px;
    border: 1px solid grey;
    border-radius: 5px;
}


.status {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 3px;
    width: 120px;
    height: 60px;
    background-color: rgba(30, 30, 30, 0.9);
    color: white;
    font-family: 'Times New Roman';
    border: 1px solid black;
    border-radius: 5px;
}
.status b {
    vertical-align: middle;
    text-align: center;
}
.status .recording {
    /* position: relative;*/
    margin-left: auto;
    margin-right: auto;
    color: red;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     border: 4px solid red;
     border-left-color: transparent;
     border-right-color: transparent;
     animation: busyIndicatorBox_kf 1s linear 0s infinite normal none running;
 }

 .status .stopped {
    /* position: relative;*/
    margin-left: auto;
    margin-right: auto;
    color: white;
     width: 24px;
     height: 24px;
     border-radius: 0%;
     border: 12px solid white;
     border-left-color: white;
     border-right-color: white;
     
 }

 .status .tuned {
    /* position: relative;*/
    margin-left: auto;
    margin-right: auto;
    color: lightgreen;
     width: 100px;
     height: 30px;
     border-radius: 50%;
     border: 3px solid lightgreen;
     border-left-color: transparent;
     border-right-color: transparent;
     animation: busyIndicatorBox_kf 1s reverse 0s infinite normal none running; 
 }


.subsectionScanning{
    padding: 10px;
}


.subsection{
    
    border-bottom: 1px solid darkred;
    border-radius: 5px;
    padding: 10px;
}



/* Scanning POP UP CSS */

#busyIndicatorBox div {
   /* position: relative;*/
   margin-left: auto;
   margin-right: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 32px solid lightgreen;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: busyIndicatorBox_kf 1s linear 0s infinite normal none running;
}

@keyframes busyIndicatorBox_kf {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes busyIndicatorBox_kf {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.busyIndicator_div {
    display: none;
    position: fixed;
    top: 1%;
    left: 0%;
    height: 98%;
    width: 100%;
    z-index: 100;
    background-color: rgba(30, 30, 30, 0.9);
    text-align: center;
}

.busyIndicator_div * {
    text-align: center;
    vertical-align: center;
    color: white;
}

.busyIndicator_div h6 {
    text-align: center;
    vertical-align: center;
    color: lightgreen;
}

#busyIndicatorBox.show {
    display: block;
}

/*
.footer{
height: 50px;
background: linear-gradient(red, darkred);
text-align: center;

}*/

.footer {
    position: absolute;
    padding-bottom: 0px;
    bottom: 0;
    width: 100%;
    height: 30px;
    /* Set the fixed height of the footer here */
    align-content: center;
    background: linear-gradient(to bottom, black, black);
    color: white;
    text-align: center;
}


.footer p {
    color: white;
}

.footer p a{
    color: lightgray;
}


.footer p a:hover{
    color: goldenrod;
}

.streamMessage{
    color: darkred;
    text-align: center;
}
