body {
    background:#f8f8f8;
    padding-top:50px;
    padding-bottom:40px;
}

header {
    background-color: #000;
    height:50px;
    border-bottom:1px solid #ccc;
    position:fixed;
    top:0;
    left:0;
    right:0;
    
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:50px;
}
header img {
    width:120px;
}
header ul {
    display:flex;
    align-items: center;
    margin:0;
    padding:0;
}
header ul li{
    margin:0 5px;
    padding:10px;
    list-style: none;
}
header ul li a {
    color:#fff;
    text-decoration: none;
}
header ul li a:hover {
    color:#fff;
    text-decoration: underline;
    opacity: 0.9;
}

.layout-container {
    min-height: calc(100vh - 90px);
}
.layout-container .chart-intro{
    margin-top:45px;
}
footer{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background-color: #fff;
    border-top:1px solid #ccc;
    height:40px;
    background-color: #ebebeb;    
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}
footer p {
    color:#7b7b7b;
    font-size:15px;
    margin:0;
}

/* styles for charts START */
.highcharts-figure,
.highcharts-data-table table {
    min-width: 360px;
    max-width: 800px;
    margin: 1em auto;
  
}
.highcharts-figure #container {
    border:1px solid #ccc;
}
.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}
.highcharts-description {
    font-size:15px;
}
/* styles for charts END */