@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins.woff) format("woff"), url(../fonts/Poppins.woff2) format("woff2");
}

:root {
    --red: #D82028;
    --white: #ffffff;
    --black: #000000;
    --green:#319A00;
    --font-main: 'Poppins';
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:active,
 :hover,
 :focus {
    outline: 0!important;
    outline-offset: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 28px;
    background-image: url('../images/background.avif');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: #ffffff;
    height:100vh;

}

a {
    text-decoration: none;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.dashboard-container {
    padding-left: 60px;
    padding-right: 60px;
    margin: auto;
}

.dashboard-header {
    padding-top: 20px;
    padding-bottom: 30px;
}

.dashboard-header .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header .status {
    color: var(--green);
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboard-body .tab-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.dashboard-body .tab-buttons {
    display: flex;
    margin-bottom: -1px;
}

.dashboard-body .tab-buttons button {
    flex: 1;
    padding: 13px 30px;
    border: none;
    border-radius: 0px 20px 0px 0px;
    background: #f1f1f1;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    max-width: fit-content;
}

.dashboard-body .tab-buttons button.active {
    background: var(--red);
    color: var(--white);
    font-weight: bold;
}

.dashboard-body .tab-content {
    display: block;
    animation: fadeIn 0.4s ease;
    border-right: 0px solid #BDBDBD;
     border-top: 1px solid #BDBDBD;
    border-radius:0px 20px 20px 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dashboard-body table {
    width: 100%;
    border-radius: 0px 20px 20px 20px;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
}

.dashboard-body table tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.dashboard-body table tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.dashboard-body table tbody tr.clickable:last-of-type td:first-child {
    border-bottom-left-radius: 20px;
}

.dashboard-body table tbody tr.clickable:last-of-type td:last-child {
    border-bottom-right-radius: 20px;
}


/* When it's active, remove the rounding */



.dashboard-body th,
.dashboard-body td {

    padding: 10px;
    text-align: left;
    border-top: 0px;
}
.dashboard-body th{
    height: 56px;
}
.dashboard-body td{
    height: 51px;
}
.dashboard-body td {
    border-bottom: 1px solid #BDBDBD;
}
.dashboard-body tr.clickable.active td {
    border-bottom: 0px solid #BDBDBD;
}
.dashboard-body th {
    border-top: 1px solid #BDBDBD;
}

.dashboard-body th,
.dashboard-body td {
    border-left: 0px;
}

.dashboard-body th:first-child,
.dashboard-body td:first-child {
    border-left: 1px solid #BDBDBD;
    padding-left: 30px;
}
.dashboard-body th:last-child,
.dashboard-body td:last-child {
    border-right: 1px solid #BDBDBD;
    padding-right: 30px;
}
.dashboard-body .expand-row td:first-child {
    padding-left: 0px;
}
.dashboard-body .expand-row td:last-child {
    padding-right: 0px;
}

.dashboard-body th {
    background: var(--white);
    color: var(--black);
    font-size: 26px;
    font-weight: 600;
    border-bottom: 0px;
}

.dashboard-body td {
    color: #424242;
    font-weight: 500;
}

.dashboard-body tr {
    background: #f8f8f850;
}

.expand-row {
    display: none;

}

.expand-row td {
    padding: 15px;
    text-align: left;
    color: #424242;
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-table td {
  vertical-align: top;
}
tr.active+.expand-row {
    display: table-row;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tr.clickable {
    cursor: pointer;
}

/* tr.clickable:hover {
    background: #d8d8d880;
} */

.dashboard-footer {
    margin-top: 60px;
}
.dashboard-body tr.clickable td:last-child{
    text-align: center;
}


.content-box {
    padding: 10px 20px;
    font-size: 16px;
    /* display: flex;
    flex-direction: column; */
    flex: 1 1 250px;
    min-width: 250px;
}

.content-box.image-box img {
    width: 200px;
}

.box-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}
.expand-content {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 20px;
    gap: 10px;
    margin: auto;
    box-sizing: border-box;
}

.footer-border {
    width: 100%;
    display: flex;
}

.footer-end-text {
    color: var(--red);
    font-size: 120px;
    line-height: 100px;
    font-weight: 600;
}

.time-details {
    font-size: 18px;
    border: 1px solid #A7A7A7;
    border-radius: 30px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 30px;
}

.footer-detail-box {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.space-border {
    color: #3AB103;
}

.text-red {
    color: #D82028;
}

.time {
    font-weight: 600;
    color: #000000;
    width: 97px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-footer {
    width: 100%;
    position: relative;
    display: flex;
    background-image: url(../images/footer-border.png);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: bottom;
}

.footer-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 20px;
}


.address-row {
  display: flex;
  align-items: center;
  margin: 0px 0px 7px;
}

.label {
  width: 200px; /* Adjust this for equal left width */
  font-weight: 500;
}

.colon {
  width: 20px; /* keeps colon aligned */
}

.value {
  flex: 1;
}


/* vysakh-css==================================================================================================================================== */

.ftr-btm-fix {
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.footer-border{
    width: 100%;
}
.ftr-vy-row {
    width: 82%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-left: auto;

}
.btn-content {
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
       font-size: 26px;
    border: 1px solid #A7A7A7;
    border-radius: 30px;
    padding: 11px 15px;
    margin-bottom: 0px;
}
.ftr-cntnt-area{
    display: flex;
    align-items: center;
    column-gap: 32px;
    justify-content: left;
}
.ftr-btm-cntnt{
    position: relative;
}
.ftr-vy{
    position: absolute;
    bottom: 10%;
    left: 0px;
    right: 0px;
    width: 100%;
    padding: 0px 60px;
}
/*.dashboard-body{*/
/*    min-height: 47.5vh;*/
/*}*/
.box-details{
    font-size: 16px;
}
.fntw-600{
    font-weight: 600;
}







.dashboard-body table tbody tr.last-row.active td:first-child {
    border-bottom-left-radius: 0;
}

.dashboard-body table tbody tr.last-row.active td:last-child {
    border-bottom-right-radius: 0;
}

.dashboard-body table tr.last-row td:first-child {
    border-bottom-left-radius: 20px;
}

.dashboard-body table tr.last-row td:last-child {
    border-bottom-right-radius: 20px;
}

.dashboard-body table th:last-child {
    border-radius: 0px 20px 0px 0px;
}

    .header {
      color: white;
      padding: 0px 12px;
      font-weight: bold;
    }
    .logo-img{
        width: 205px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th, td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
      vertical-align: top;
      text-align: left;
    }

    tr.expandable-row {
      cursor: pointer;
      background: #f8f8f850;
    }

    .details {
      display: none;
    }

    .details td {
      background-color: #f9f9f9;
    }

    .sub-section {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .signature, .product {
      max-width: 100px;
      max-height: 80px;
    }



/*********my style***********/
.th-row{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    height: 56px;
    color: var(--black);
    font-size: 28px;
    font-weight: 600;
    border-radius: 0px 20px 0px 0px;
     border-left: 1px solid #BDBDBD;
     border-right: 1px solid #BDBDBD;
}
.first-column{
    width: 12%;
}
.td-expand .first-column{
    width: 25%;
}
.second-column{
    width: 15%;
}
 .td-expand .second-column{
    width: 27.5%;
}
.third-column{
    width: 18%;
}
/* .td-expand .third-column{
    width: 28.5%;
} */
.fourth-column{
    width: 32%;
}
.fifth-column{
    width: 32%;
}
 .td-expand .fourth-column{
    padding-left: 20px;
 }
.sixth-column{
    width: 6%;
}
.td-row{
    padding: 15px 30px;
    height: 51px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.td-expand{
    display: flex;
    align-items: start;
    background: #fff;
    width: 97%;
    margin: auto;
    border-radius: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    /* transition: all 0.2s ease; */
}
.td-expand.active {
  max-height: 100%; /* adjust based on your content */
  opacity: 1;
  transform: translateY(0);
    padding: 15px 30px;
    margin-top: 10px;
}
.table-content{
    /*border-bottom: 1px solid #BDBDBD;*/
    border-radius: 0px 20px 20px 20px;
    width: 100%;
    z-index: 999;
    position: relative;
    height: calc(100vh - 260px);
    overflow: hidden;

}

.arrow-col{
    text-align: center;
}
.td-expand .box-details {
    text-align: left;
    color: #424242;
}
.td-expand .box-details div{
    margin-bottom: 5px;
}
.clickable-row{
    background: #f8f8f850;
    border-left: 1px solid #BDBDBD;
    border-right:  1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
}
.clickable-row:last-child{
    border-radius: 0px 0px 20px 20px;
    border-bottom: 1px solid #BDBDBD;
}
.clickable-row.row-expanded{
    padding-bottom: 15px;
}
.clickable-row.row-expanded .arrow-col{
    rotate: 180deg;
}
/* .table-content{
max-height: 700px;
} */

.table-scroll {
  max-height: 100%;       /* takes full height of parent */
  overflow-y: auto;
}



.clickable-row:last-child {
    margin-bottom: 50px;
}


/* width */
.table-scroll::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.table-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}

/* Handle on hover */
.table-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.td-expand {
  display: none;
  animation: expandSlide 0.3s ease-out forwards;
}

.td-expand.active {
  display: flex;
}

.th-row .colum-title{
    white-space: nowrap;

}




@keyframes expandSlide {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}






@media screen and (max-width: 3500px) {
.footer-end-text {
    font-size: 100px;
    line-height: 80px;
}
.dashboard-body th, body, .btn-content, .th-row{
    font-size: 22px;
}
body {
    
    font-size: 28px;
}
}

@media screen and (max-width: 2000px) {

.dashboard-container {
    padding-left: 45px;
    padding-right: 45px;
}
.dashboard-body th, body, .btn-content, .th-row{
    font-size: 16px;
}
.footer-end-text {
    font-size: 60px;
    line-height: 50px;
}
.ftr-vy{
    padding: 0px 45px;
}
.dashboard-header .status {
    font-size: 31px;
}
.dashboard-body td{
    font-size: 16px;
}
 .td-expand .fourth-column{
    padding-left: 13px;
 }
 .dashboard-body .tab-buttons button {
    font-size: 18px;
}
.table-content{
    height: calc(100vh - 260px);
}
}
@media screen and (max-width: 1950px) {
    .table-content{
    height: calc(100vh - 260px);
}
}

@media screen and (max-width: 1800px) {
    .footer-end-text {
        font-size: 54px;
    }
    .time-details {
        font-size: 16px;
        column-gap: 10px;
    }
    .footer-detail-box {
        column-gap: 20px;
    }
    .ftr-cntnt-area {
    column-gap: 20px;
    }
    .btn-content {
    column-gap: 10px;
    font-size: 16px;
    }
    .ftr-vy-row {
        width: 88%;
    }

}

@media screen and (max-width: 1600px) {
    .footer-end-text {
        font-size: 44px;
    }
    .time-details {
        margin-bottom: 25px;
    }
        .btn-content {
        column-gap: 8px;
        font-size: 15px;
    }
    .table-content{
        height: calc(100vh - 270px);
    
    }

}

@media screen and (max-width: 1500px) {

    .time-details {
        margin-bottom: 20px;
    }
    /*.ftr-btm-fix {*/
    /*    position: relative;*/
    /*}*/
    .btn-content {
        padding: 7px 10px;
        font-size: 14px;
    }
    .first-column{
        width: 12%;
    }
.second-column{
    width: 20%;
}
.third-column{
    width: 20%;
}
.fourth-column{
    width: 30%;
}
.fifth-column{
    width: 30%;
}
.table-content{
        height: calc(100vh - 260px);
    
    }
}

@media screen and (max-width: 1400px) {
    .dashboard-header .status {
        font-size: 34px;
    }
    .tab-buttons button {
        padding: 10px 25px;
    }
    .footer-end-text {
        font-size: 40px;
    }
    .time-details {
        padding: 7px 10px;
        margin-bottom: 18px;
    }
        .ftr-cntnt-area {
        column-gap: 10px;
    }
    .ftr-vy-row {
        width: 95%;
    }
    .fourth-column {
        width: 18%;
    }
    .dashboard-body th, body, .btn-content, .th-row {
        font-size: 16px;
    }


}
@media screen and (max-width: 1360px) {
    .ftr-vy-row {
        width: 98%;
    }
}
@media screen and (max-width: 1320px) {

    .time-details {
        column-gap: 5px;
        margin-bottom: 10px;
    }
    .btn-content {
        padding: 4px 5px;
    column-gap: 5px;
    font-size: 14px;
    }
   
    .footer-end-text {
        font-size: 46px;
        line-height: 30px;
    }
    .tab-content.active{
        border-right: 1px solid #BDBDBD;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .tab-content{
        overflow-x: auto;
        width: 100%;
    }
    .first-column{
        width: 20%;
    }
    .second-column{
        width: 25%;
    }
    .third-column{
        width: 25%;
    }
    .fourth-column{
        width: 35%;
    }
    .fifth-column{
        width:35%;
    }
}

@media screen and (max-width: 1280px) {
    .footer-end-text {
        font-size: 42px;
    }
    .footer-detail-box {
        column-gap: 10px;
    }
    .btn-content {
        font-size: 13px;
    }

    .box-title {
        font-size: 15px;
    }
    .box-details{
        font-size: 15px;
    }
    .content-box {
     padding: 15px 20px;
    }
 .ftr-vy-row {
        width: 90%;
    }

}

@media screen and (max-width: 1200px) {
    .dashboard-header .status {
        font-size: 30px;
    }
    .tab-buttons button {
        padding: 10px 20px;
        font-size: 16px;
        max-width: fit-content;
    }
    .dashboard-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-end-text {
        font-size: 40px;
    }
    .time-details {
        font-size: 14px;
        padding: 5px 10px;
        margin-bottom: 14px;
        flex-wrap: wrap;
        width: auto;
        max-width: max-content;
    }
    .ftr-cntnt-area {
        column-gap: 10px;
    }
    .footer-end-text {
        font-size: 36px;
    }
        .btn-content {
        font-size: 13px;
    }
    .ftr-vy, .dashboard-container {
        padding: 0px 30px;
    }
    .ftr-vy-row {
        width: 94%;
    }
   
}

@media screen and (max-width: 1150px) {
    .footer-content {
        flex-wrap: wrap;
        padding: 50px 0px 0px;
    }
        .footer-end-text {
        line-height: 30px;
    }
    .btn-content {
        font-size: 12px;
    }

}

@media screen and (max-width: 1080px) {
    .content-box.image-box {
        min-width: 240px;
        max-width: 240px;
    }
    .footer-content {
        padding: 110px 0px 0px;
        justify-content: center;
    }
        .btn-content {
        flex-wrap: wrap;
    }
    .ftr-vy-row {
        column-gap: 20px;
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: center;
        width: 88%;
    }
    .ftr-cntnt-area{
        flex-wrap: wrap;
        row-gap: 10px;
    }
        .footer-end-text {
        font-size: 32px;
        line-height: 40px;
    }
    .btn-content {
        column-gap: 4px;
    }
    .footer-end-text {
        font-size: 24px; line-height: 28px;
    }

}

@media screen and (max-width: 992px) {
    .tab-content {
        overflow: auto;
    }
    .ftr-vy-row {
        width: 100%;

    }
    .btn-content{
    margin: 0px 20px;
    font-size: 14px;
    }
    .dashboard-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .tab-content table th {
        white-space: nowrap;
    }
    .time-details {
        margin-bottom: 5px;
    }

    .footer-detail-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-end-text {
        font-size: 35px;
        line-height: 30px;
    }
    .ftr-btm-cntnt{
        background-color: #ffffff;
    }
    .footer-border{
        display: none;
    }
    .ftr-vy {
        position: relative;
        padding: 20px 0px 20px;
    }
        .ftr-cntnt-area {
       justify-content: center;
    }
    .dashboard-body th, body, .btn-content {
        font-size: 14px;
    }
    .dashboard-body th, body { font-size: 14px; }
    
  
    .th-row{ border-right: 0px solid #BDBDBD; }
    .dashboard-body .tab-buttons button {
        font-size: 16px;
        padding: 13px 20px;
    }
    .dashboard-body .tab-container {
        margin-bottom: 20px;
    }
     .table-content{*/
        border-right: 0px solid #BDBDBD;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-bottom: 0px;
        width: 1800px;
    }
    body {
  
    height: 100%;
}
.ftr-btm-fix {
    position: relative;
}
    .table-content {
        height: calc(100vh - 282px);
    }
}

@media screen and (max-width: 620px) {
    .content-box.image-box img {
        width: 150px;
    }
    .content-box.image-box {
        min-width: fit-content;
        max-width: fit-content;
    }
    .expand-content {
        flex-wrap: nowrap;
    }
    .footer-detail-box {
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: center;
        align-items: center;
    }
    .dashboard-footer {
        background-image: none;
        background-color: #ffffff;
    }
    .footer-content {
        padding: 20px 0px 20px;
    }
    .dashboard-header .header img {
        width: 200px;
    }
        .footer-end-text {
        font-size: 33px;
        line-height: 30px;
    }
    .table-content { width: 1200px;}
}

.text-orng{
	color : #ff6000;
}
.text-green{
	color : #267b17;
}
.text-violet{
	color : #8550b7;
}
.text-cyan{
	color : #036d6d;
}
.text-blue{
	color: #5886d7;
}
.text-yellow{
	color: #b8860b;
}
.text-brown{
	color: #a52a2a;
}
.text-darkblue{
	color: #171789;
}
.text-pink{
	color: #d15873;
}
.live-btn{
	padding-left: 35px;
	position: relative;
}
span.online-indicator {
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0; /* Align to the right */
  transform: translateY(-50%); /* Adjusted vertical alignment */
  background-color: red;
  border-radius: 50%;
}
span.blink {
position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 50%;
  left:0; /* Align to the right */
  transform: translateY(-50%); /* Adjusted vertical alignment */

  background-color: red;
  opacity: 0.7;
  border-radius: 50%;
  transform-origin: bottom;

  animation: blink 1s linear infinite;
}

/*Animations*/

@keyframes blink {
  100% { transform: scale(2, 2);
          opacity: 0;
        }
}

