.frontend-para p
{
    text-align: justify;
}

.custom-button-list {
    margin-left: 0px;
    margin-bottom: 5px; }
.custom-button-list .btn {
    margin-left: 0px;
    margin-bottom: 12px;
}

/* Added for butting Select2 with input-group-prepend label. Without this due to rounded edges it looks bad*/
.input-group > .input-group-btn:last-child > .selectpicker {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.input-group > .input-group-btn:first-child > .selectpicker {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.group-logo-topbar {
    max-height: 50px;
    max-width: 80px;
}

@media (min-width: 768px) {
    .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}

.card-widgets-custom {
    float: right;
    height: 10px;
}
.card-widgets-custom > a {
    color: inherit;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
}

/*for printing*/
.col-print-1 {width:8%;  float:left;}
.col-print-2 {width:16%; float:left;}
.col-print-3 {width:25%; float:left;}
.col-print-4 {width:33%; float:left;}
.col-print-5 {width:42%; float:left;}
.col-print-6 {
    width:50%;
    float:left;

    transform:scale(.6);
    transform-origin: center 0;

    -webkit-transform:scale(.6);
    -webkit-transform-origin: center 0;
}
.col-print-dummy-6 {
    width:49%;
    float:left;
}
.col-print-7 {width:58%; float:left;}
.col-print-8 {width:66%; float:left;}
.col-print-9 {width:75%; float:left;}
.col-print-10{width:83%; float:left;}
.col-print-11{width:92%; float:left;}
.col-print-12{width:100%;}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.pjax-btn-delete
{
    cursor: pointer;
}


/* Custom CSS to set the header color to Bootstrap primary blue */
.table-primary-blue th {
    color: blue; /* White text for contrast */
}
/* Custom CSS to make table row text bold */
.table-bold-rows tr {
    font-weight: bold;
}

.gauge-container {
    position: relative;
    width: 260px;
    height: 50px;
    margin: 110px 10px;
}
.gauge {
    display: flex;
    height: 45px;
    align-items: center;
    position: relative;
}
.gauge-title {
    position: absolute;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    margin-left:10px;
}
.gauge div {
    flex: 1;
    height: 100%;
}
.gauge .red { background-color: red; }
.gauge .orange { background-color: orange; }
.gauge .gray { background-color: lightgray; }
.gauge .lightgreen { background-color: lightgreen; }
.gauge .green { background-color: green; }

.block-title {
    position: absolute;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    margin-left:10px;
}
.black-box-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.black-box {
    background-color: black;
    color: white;
    width: 120px;
    height: 50px;
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.4em;
    margin-left: 10px;
}
.black-box-label {
    text-align: center;
    margin-top: 5px;
    font-size: 1em;
    color: black;
}

.chart-img-box-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 22px;
}
.chart-img-box-image {
    width: 50%; /* Adjust width as necessary */
    height: 50%; /* Adjust height as necessary */
    background-color: white; /* Dummy background color */
    margin-bottom: 10px;
}
.chart-img-box {
    background-color: black;
    color: white;
    width: 120px;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    position: relative;
    font-weight: bold;
}
.chart-img-box-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid black;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.needle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
}
.needle:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}