
.chart-container {
    width: 100%;
}
pre {
    background: black;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}
.chart_btn{
    display: flex;
}
.m_r{
    margin-right: 10px;
}
.summary_textarea{
    width: 100%;
   /* min-height: 210px;*/
    min-height: 50vh;
    resize:vertical;
    border: none;
    background-color: lavender;
}
.sql_query_alert {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
}
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display:flex;
    justify-content: center;
    align-items: center;
}
.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}
.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
}
@keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
}
@media (max-width:1400px) {
    .container{
        max-width:1400px;
    }
}
.logo{
    display: flex; 
    justify-content: flex-end; 
    margin-top:15px;
}
.logo img{
    height: 80px;
}
.manuChart{
    display: flex;
    margin-bottom:40px;
}
.nav-tabs {
    border-bottom: none;
}
.center-text {
    text-align: center;
}
.box_chart_context {
    border-bottom: 1px solid black;
}
@media (min-width: 1400px) {
    .container {
        max-width: 90%;
    }
}

.center {
    display: flex;
    flex-direction: column;
}

.left{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.right {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}


.left_test .chart.chartjs-render-monitor,
.right_test .chart.chartjs-render-monitor {
    width: 435px !important;
}

.chart_left,
.chart_right{
    width: 50% !important;
}
.table_box{
    padding-bottom: 20px;
}
.active { 
    background-color: aquamarine !important;
}
.nav-link.active {
    background-color: aquamarine !important;
}
.edit_summary{
    background-color: antiquewhite !important;
    border: 2px solid blue !important;
}