
*:root {
    --header-padding: calc(0.2 * var(--header-height));

    --footer-height: 8vh;
    --footer-padding: calc(0.2 * var(--footer-height));
    
    --message-success-back: #00ffb7;
    --message-warning-back: #57b1ff;
    --message-error-back:   #ff8a8a;
    --message-font:         #ffffff;

    --font-size: 2vh; 
    
    --icon-size: 3.5vh;
    --icon-radius: 0.5vh;

    --space-width: 1vh;

    --header-back:  #2b759d;
    --header-font:  #FFFFFF;
    
    --footer-back:  #2b759d;
    --footer-font:  #FFFFFF;
    
    --button-back:  #000000;
    --button-over: #000000;
    --button-font:  #000000;

    --body-back:    #ffffff;
    --body-over:    #d7d8bf;
    --body-font:    #000000;
    
    --table-header: #B85042;
    --table-odd:    #00000010;
    --table-even:   #00000020;
    --table-over:   #FFFFFF10;
    --table-font:   #000000;

    --icon-back:    #00000020;
    --icon-font:    #FFFFFF;
    --icon-over:    #00000040;

} 


.leaflet-control-container, 
.leaflet-marker-pane, 
.leaflet-tooltip-pane,
.leaflet-overlay-pane,
.leaflet-popup-pane,
.leaflet-labels-pane,
.leaflet-shadow-pane {
    display:none;
}





table {
    width: 100vw;
  }

td {
    text-align: center;
}

  
  table, td {
    border: none;
    border-collapse: collapse;
  }

  tbody {
    display: block; 
    max-height:  calc( 98vh - var(--header-height) - var(--footer-height));
    overflow-y: scroll; 
    overflow-x: hidden;
}

tbody tr:hover, tbody tr:hover td {
    background: #00000020;
}


tbody tr td:hover {
    filter:brightness(1.2);
}

/* 
thead {
    display: table;
  }

  

  th, td {
    word-break: break-all; 
    font-family: Roboto;
    font-weight: 100;
    border-collapse:collapse;
  }
  
  tr {
    display: table; 
 }
  
  td {
    text-align: center;
  }

  td.month {

  }

.city {
    min-width: 12vw;
    max-width: 12vw;
    width: 12vw;
}





.chart, canvas {
    min-width: 15vw;
    max-width: 15vw;
    width: 15vw;
}


.month {
    min-width: 2.5vw;
    max-width: 2.5vw;
    width: 2.5vw;
}

canvas {
    height: 50px;
}

tr.dark, tr.dark td {
    background: #00000010;
}


tr.bright, tr.bright td {
    background: #FFFFFF10;
}

tr:hover, tr:hover td {
    background: #00000020;
}


td.climate {
    background: #FFFFFFD0 !important;
   
} */



/* 
:root {
    --font-size:   1.8vh;
    --head-height: 9vh;
    --foot-height: 3vh;
    --left-width: 40vw;

    --margin-h: 3vh;
    --margin-w: 3vw;

    --right-head-height: 8vh;
    --right-foot-height: 3vh;

    --left-head-height: 8vh;
    --left-foot-height: 3vh;

    --icon-size: 3.5vh;
    --border-radius: 0.5vh; 

    --dark-transparent-top: #00000020;
    --dark-transparent-med: #00000040;
    --dark-transparent-low: #00000080;

    --font-family: Roboto;
    --font-weight: 100;
} 


html {
    scroll-behavior:smooth;
}

body {
    scroll-behavior:smooth;
    overflow: hidden;
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
}

::-webkit-scrollbar-track, ::-webkit-scrollbar {
  background-color: var(--dark-transparent-top);
  }

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-transparent-med);
}

input[type="text"], input[type="text"]:focus {
    background: #FFFFFF10;
    border: 1px solid black;
    border-radius: var(--border-radius);  
    outline-width: 0;
    padding: 0.2vh;
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
}

icon {
    display: inline-block;
	font-family:                    'MaterialIcons';
    font-size:                      calc( 0.74 * var(--icon-size));
    width: calc( 0.87 * var(--icon-size));
    height: calc( 0.87 * var(--icon-size));
    margin-left: calc( 0.33 * var(--icon-size));
    padding-left: calc( 0.13 * var(--icon-size));
    padding-top: calc( 0.13 * var(--icon-size));
    font-feature-settings:          'liga';
    color:                          white;
    background: var(--dark-transparent-top);
    border-radius:  var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

icon:hover {
    background: #FFFFFF60;
}

icon.selected {
    background: var(--dark-transparent-med);
}

.dragging {
    background: lightgrey;
}

div.button {
    display: inline-block;
    width: 10vw;
    height: 3vh;
    vertical-align: middle;
    color: #FFFFFFC0;
    background: #FFFFFF20;
    border-radius: var(--border-radius);
    padding-top: 0.5vh;
    top: 1.8vh;
    position: relative;
    margin: 0 0.75vw;
    text-align:center;
    transition: all 0.2s ease-in-out;
    cursor:pointer;
}

small_icon {
    display: inline-block;
    font-family: 'MaterialIcons';
    font-size: calc(0.8 * 0.74 * var(--icon-size));
    width: calc(0.7 * 0.87 * var(--icon-size));
    height: calc(0.7 * 0.87 * var(--icon-size));
    padding-top: calc(0.1 * 0.13 * var(--icon-size));
    font-feature-settings: 'liga';
    transition: all 0.2s ease-in-out;
}

div.button:hover {
    background: #FFFFFF40;
}


#left, #right, #bottom {
    border: 1px solid red;
}

#filter_container, #main, #table_info, #play_previous, #play_next, #player, #audio_info {
    border: 1px dashed blue;
}

#left, #right, #bottom, #filter_container, #main, #table_info, #play_previous, #play_next, #player, #audio_info {
    border: none;
}




#head {
    position: fixed;
    left: 0;
    top: 0;
    height: calc(0.8 * var(--head-height));
    width: 100vw;
    background: #00000060;
    margin-bottom: calc(0.2 * var(--head-height));
    display:inline-block;
    vertical-align: middle;
    text-align:left;
    padding-left: 1.5vw;
}


#head div span {
    top: -0.4vh;
    position: relative;
}


#left {
    position:fixed;
    top: var(--head-height);
    height: calc(100vh - var(--head-height) - var(--foot-height));
    left:0;
    width: var(--left-width);
}

#left_info {
    width: 100%;
    height: var(--left-head-height);
}

#left_main {
    width: 95%;
    overflow-y:scroll;
    height: calc(100vh - var(--head-height) - var(--foot-height) - var(--left-head-height) - var(--left-foot-height));
}

#left_data {
    background: #00000010;
    border-bottom-left-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    padding: 0.5vh 0.5vw;
}

#left_data div {
    margin-top: 0.5vw;
    display: inline-block;
    vertical-align: top;
    height: calc(0.8 * var(--icon-size));
}

#left_data div icon {
    font-size: calc( 0.52 * var(--icon-size));
    width: calc( 0.61 * var(--icon-size));
    height: calc( 0.61 * var(--icon-size));
    margin-left: calc( 0.23 * var(--icon-size));
    padding-left: calc( 0.09 * var(--icon-size));
    padding-top: calc( 0.09 * var(--icon-size));
    
}

#left_data div span {
    display: inline-block;
    font-size: calc( var(--font-size) / 1.2);
    width: calc(0.6 * var(--icon-size));
    vertical-align: top;
    margin: 0.5vw 0 0 0;
    text-align: right;
    padding-right: calc(0.2 * var(--icon-size));
}

#left_data div div {
    display: inline-block;
    font-size: calc( var(--font-size) / 1.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc( var(--left-width) - 6 * var(--icon-size));
    cursor: pointer; 
}

#left_data div:hover {
    background: var(--dark-transparent-top);
}

#left_data div div:hover {
    background: #00000000;
}

#left_foot {
    height: var(--left-foot-height);
}



#right {
    position:fixed;
    top: var(--head-height);
    height: calc(100vh - var(--head-height) - var(--foot-height));
    right:0;
    width: calc(100vw - var(--left-width) - 0.5vw);
}

#filter_container {
    width: 100%;
    height: calc(var(--right-head-height) / 2);
}

#filter_type {
    width: 100%;
    height: calc(var(--right-head-height) / 2);
    display:inline-block;
    
}

#filter {
    width: calc(100vw - var(--left-width) - 1.8vw);
}

#main {
    height: calc(100vh - var(--head-height) - var(--foot-height) - var(--right-head-height) - var(--right-foot-height));
    width: 100%;
    border: none;
    margin-left: 7vw;
}

#loading{
    text-align : center;
    border: solid 1px black;
    padding: 1rem 0;
    width : 100%;
}
 */
