 body {
             color: #fff;
            font-family: "Urbanist", sans-serif;
            height: 100vh;
            padding: 20px;
            background:url(../images/main-bg.jpg) no-repeat left top;
            background-size: cover;
            overflow: hidden;
        }
        .stress-warea{
            background: linear-gradient(-90deg, rgba(6,11,40,0.2) 0%, rgba(10,14,35,0.3) 100%);
            border-radius: 20px;
            padding:20px;
            position: relative;
            width: 100%;
        }
        .stress-warea::before{
            content:"";
            background-color: #fff;
            width: 1px;
            height:200px;
            left: 50%;
            top:80px;
            position: absolute;
        }
        .stress-warea h5{
            font-size:20px;
            font-weight: 500;
        }
        .card-custom {
            /* background: rgba(0, 50, 100, 0.6);
            border: 1px solid rgba(0, 200, 255, 0.2);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px; */
            text-align: center;
        }
        .badge1{
               background-color: #446eb4;
    border-radius: 20px;
    padding:3px 10px 4px 5px;
    font-size: 12px;
    margin:20px 5px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        }
        .badge1 img{
            margin-right:5px;
        }
        .gauge-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
                position: relative;
                padding-top:5px;
        }

        #needleSVG{
            position:absolute;
            top:0;
            left:50%;
            transform:translateX(-50%);
            width:200px;
            height:100px;
        }
        
        .gauge-value {
                font-size: 50px;
    font-weight: bold;
    color: #ffd700;
    position: absolute;
    top: 30%;
        }
        .gauge-value.text-white{
            width:110px;
            height: 110px;
            border: 1px solid #ddd;
            line-height: 110px;
            text-align: center;
            border-radius: 110px;
        }
        .gauge-label {
            font-size: 20px;
            color: #fff;
            position: absolute;
            bottom:0;
            line-height: 24px;
        }
        
        .chart-container {
            position: relative;
            height: auto;
            margin-top: 20px;
        }
        #distributionChart, #trendChart{
            width: 100% !important;
            height:100% !important;
        }
        .trend-chart-container {
            position: relative;
            height: 350px;
            max-height: 50vh;
        }
        .bar-chart-container {
            position: relative;
            width: 100%;
            height: 350px;
            /* max-height: 30vh; */
            margin-top: 20px;
        }
        .date-warea{
            font-size:18px;
            font-weight: 600;
        }
        .hd{
            font-size: 30px;
            font-weight: 600;
        }
        .mrgn-tp{
            margin-top:2rem;
        }
        .card-custom1{
             background: linear-gradient(-90deg, rgba(6,11,40,0.7) 0%, rgba(10,14,35,0.3) 100%);
            border-radius: 20px;
            padding:20px;
            position: relative;
            width: 100%;
        }
        .logo img{
            width: 150px;
        }

@media (max-width:1440px){
        .trend-chart-container {
            position: relative;
            height: 250px;
            max-height: 50vh;
        }
        .bar-chart-container {
            position: relative;
            width: 100%;
            height: 230px;
            /* max-height: 30vh; */
            margin-top: 20px;
        }
    }

        @media (min-width:992px) and (max-width:1199px){
            .gauge-container img{
                width: 100%;
            }
            .stress-warea h5 {
    font-size: 16px;
            }
        }
        @media (max-width:991px){
            .stress-warea{
                margin-bottom:30px;
            }
            .card-custom.sb-5{
                margin-bottom:50px;
                border-bottom:1px solid #fff;
                padding-bottom: 50px;
            }
            .stress-warea::before {
                content: none;
                
            }
        }
          /* @media (max-width:454px){
            .stress-warea::before {
                top: 42%;
            } 
        }*/
        @media (max-width:575px){
            .logo img {
                width: 150px;
            }
            .logo, .hd, .date-warea{
                margin: 0 auto;
                text-align: center;
            }
            .logo{
                margin-bottom:15px;
            }
        }
        .gauge-container img{
            width: 200px;
        }
        .gauge-box{
            display: flex;
            justify-content: center;
            align-items: center;
        }
         @media (min-width:1920px){
    .gauge-container img {
    width: 70%;
}
.stress-warea h5, h5{
    font-size:25px;
    margin-bottom:50px !important;
}
.gauge-value {
    font-size: 70px;
}
.gauge-label {
    font-size: 23px;
}
.stress-warea::before {
    height: 230px;
}
 .gauge-value.text-white{
            width:160px;
            height: 160px;
            line-height: 160px;
            border-radius: 160px;
        }
 }
 .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#needleGroup {
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}