
/********************************************
   HTML ELEMENTS
********************************************/ 

@import "./all.css";    /*all the general definitions are here*/

/* =Reset
-------------------------------------------------------------- */
 
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}


:root {
  --view-width: 1200px;
	
  /* wrapper */
  --wrapper-rpad: 10px;
  --wrapper-lpad: 10px;
  --wrapper-border: 0px;
  --wrapper-background-color : #f7f7f7;  /* #EBEBEB; (semi gray color) */
  

  /* right column */
  --rc-background-color : #fcfcfc;

  /* left colum */
  --left-column-w: 20%;
  --std-padding: 10px;
  --article-padding: 20px;
  --article-background-color : none; /* lightskyblue; */

.left-column ul{
	font-size: 1.0em;
	font-style: italic; 
}

.table-container {
	display: block;
	width: fit-content; /* shrink to table width */
	margin: 20px auto;  /* centers horizontally */
        position: relative;
        /* display: inline-block; */
        border: 0px solid #ccc;
        border-radius: 4px;
        overflow: hidden;
        font-family: sans-serif;
        margin: 20px auto; /* top/bottom 20px, auto left/right to center */
        padding-bottom: 30px; /* Space for the timestamp to not overlap */
}

.table-timestamp {
	position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 0px; /* Distance from left border */
        padding: 10px 10px;  /* padding: 10px 10px 6px 10px; top, right, bottom, left */
        font-style: italic;
	font-size: 0.8em; 
        /* background-color: #f9f9f9; */
        border-top: 0px solid #ccc;
        border-left: 0px solid #ccc;
 }
  
  /* right box, article box */ 
  --right-box-w: 500px;
  --right-box-pos-right : 10px;
  --right-box-pos-top: 50px;
  --article-box-background-color: none; 
  
  /* menu box */
  --menu-box-background-color : none; 
 
  /* app-box */
  --app-box-background-color : #E8E8E8;

  /*general*/
  --highlight-color : #99CC00;
	
  /* header */
  --header-height: 50px; 

  



}


