/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --white-color: #fff;
  --blue-color: #4070f4;
  --grey-color: #707070;
  --grey-color-light: #aaa;
}
body {
  background: #FCF6FF;
  /* background-color: #e7f2fd; */
  transition: all 0.5s ease;
  width: 100%;
  font-family:  'Poppins'!important;
}
body.dark {
  background-color: #333;
}
body.dark {
  --white-color: #333;
  --blue-color: #fff;
  --grey-color: #f2f2f2;
  --grey-color-light: #aaa;
}


/* Target the scrollbar track */
::-webkit-scrollbar {
  width: 5px; /* Vertical scrollbar width */
  height: 5px; /* Horizontal scrollbar height */
}

/* Target the scrollbar itself */
::-webkit-scrollbar-thumb {
  background-color: #9668AC; /* Color of the scrollbar */
  border-radius: 6px; /* Rounded corners */
}

/* Optional: target the scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
}

/* Optional: target the scrollbar corner */
::-webkit-scrollbar-corner {
  background: #f1f1f1; /* Color of the scrollbar corner */
}





/* sidebar */
/* .sidebar {
  background-color: var(--white-color);
  width: 15vw;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 80px 20px;
  z-index: 100;
  overflow-y: scroll;
  box-shadow: 0 0 1px var(--grey-color-light);
  transition: all 0.5s ease;
}
.sidebar.close {
  padding: 60px 0;
  width: 80px;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.menu_content {
  position: relative;
}
.menu_title {
  margin: 15px 0;
  padding: 0 20px;
  font-size: 18px;
}
.sidebar.close .menu_title {
  padding: 6px 30px;
}
.menu_title::before {
  color: var(--grey-color);
  white-space: nowrap;
}
.menu_dahsboard::before {
  content: "Dashboard";
}
.menu_editor::before {
  content: "Editor";
}
.menu_setting::before {
  content: "Setting";
}
.sidebar.close .menu_title::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 12px;
  background: var(--grey-color-light);
}
.menu_items {
  padding: 0;
  list-style: none;
}
.navlink_icon {
  position: relative;
  font-size: 22px;
  min-width: 50px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
}
.navlink_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: calc(100% + 100px);
  left: -20px;
}
.navlink_icon:hover {
  background: var(--blue-color);
}
.sidebar .nav_link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--grey-color);
  white-space: normal;
}
.sidebar.close .navlink {
  display: none;
}
.nav_link:hover {
  color: var(--white-color);
  background: var(--blue-color);
}
.sidebar.close .nav_link:hover {
  background: var(--white-color);
}
.submenu_item {
  cursor: pointer;
}
.submenu {
  display: none;
}
.submenu_item .arrow-left {
  position: absolute;
  right: 10px;
  display: inline-block;
  margin-right: auto;
}
.sidebar.close .submenu {
  display: none;
}
.show_submenu ~ .submenu {
  display: block;
}
.show_submenu .arrow-left {
  transform: rotate(90deg);
}
.submenu .sublink {
  padding: 15px 15px 15px 52px;
}
.bottom_content {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 260px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.bottom {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-around;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  color: var(--grey-color);
  border-top: 1px solid var(--grey-color-light);
  background-color: var(--white-color);
}
.bottom i {
  font-size: 20px;
}
.bottom span {
  font-size: 18px;
}
.sidebar.close .bottom_content {
  width: 50px;
  left: 15px;
}
.sidebar.close .bottom span {
  display: none;
}
.sidebar.hoverable .collapse_sidebar {
  display: none;
}
#sidebarOpen {
  display: none;
} */



/* navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%!important;
  left: 0;
  color: #fff;
  background-color: #8FB2E7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  z-index: 1000;
  box-shadow: 0 0 2px var(--grey-color-light);
}


.logo_item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family:  'Poppins'!important;
}
.navbar img {
  width: 50px;
}

.nav-h3{
  display: flex;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

.show-form{
  background: none;
  border: none;
}

.show-form i{
  color: #000;
  font-size: 25px;
}

.nav-h3 h3{
  font-size: 20px;
  font-weight: 600;
  font-family:  'Poppins'!important;
}

.navbar_content {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.navbar_content i {
  cursor: pointer;
  font-size: 20px;
  color: var(--grey-color);
}

.newcmpln{
  display: flex;
  color: #fff;
  text-decoration: none;
}


/* .sect{
  width: 100%;
  height: 100%;
  margin-top: 5%;
  overflow: hidden;
} */


/* .regiter-new-btn {
  
} */

/* .reg-new-sec{
  background: #fff;
  padding: 20px 0;
} */

.top-reg-inner{
  padding: 20px;
}

.logout-btn a{
  background-color:  #FFC000;
  color: #000;
  padding: 10px 15px;
  text-align: center;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  margin: 0px;
  text-decoration: none;
  font-family:  'Poppins'!important;
}

.logout-btn a:hover{
  background: #0b5ed7;
  font-weight: 500;
  color: #fff;
  box-shadow: 5px 5px 20px #FFC000;
  transition: all .3s ease-in-out;
}

.reg-bt button{
  background-color: #FFC000;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  margin-left: 45%;
  font-family:  'Poppins'!important;

}

.reg-bt button:hover{
  background: #0b5ed7;
  color: #fff;
  box-shadow: 5px 5px 20px #0b5ed7;
  transition: all .3s ease-in-out;
}

.list-tbl{
  margin-top: 10px;
}
/* .list-h3{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
} */

#comp-form {
  display: none;
}

.form-sec1{
  margin-top: 12px!important;
}

.form-col-sec{
  background: #9668AC;
  /* background: #8FB2E7; */
  padding: 40px 20px;
  border-radius: 10px;
}

.form-col-sec label{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 5px;
  padding-top: 10px;
}


.form-col-sec input{
  font-size: 13px;
  font-weight: 500;
  border: none;
}

.form-col-sec select{
  font-size: 13px;
  font-weight: 500;
}

.form-col-sec textarea{
  font-size: 13px;
  font-weight: 500;
  height: 140px;
}

.upld-box{
  border-radius: 5px;
}


.relative {
  border-color: #9668AC;
  height: 46px;
}

.form-label{
  margin-bottom: 0px!important;
}

.absolute i{
  font-size: 20px;
  color: #9668AC;
}

.absolute span{
  font-size: 10px;
}

/* .relative input{
  font-size: 10px;
  font-weight: 500;
} */

/* .related-doc{
  margin-left: auto;
  margin-right: auto;
  margin-top: 90px;
  width: 50%;
} */

/* .doc-upld{
  margin-top: 10px;
} */

.doc-add-btn{
 text-align: center;
 margin-top: 30px;
}

.doc-add-btn button{
  /* width: 30%; */
  padding: 10px 50px;
  border-radius: 30px;
  /* margin-top: 10px!important; */
  background: #FFC000;
  color: #000;
  font-size: 16px!important;
  font-weight: 700;
  border: none;
}
.doc-add-btn i{
  font-size: 15px!important;
}

.doc-add-btn button:hover{
  box-shadow: 5px 5px 20px #FFC000;
  transition: all .3s ease-in-out;
}

.cont{
 width: 100%;
}


.form-container{
position: absolute;
width: 100%;
top: 10vh;
}
/* CSS for form elements */
.myform-label {
  display: inline-block;
  width: 16vw;
  text-align: left;
  margin-right: 20px;
  font-weight: bold;
  margin-left: 2vw;
}

.myform-input,
.myform-select,
.myform-textarea {
  width: 250px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.myform-textarea {
  height: 171px;
  resize: vertical;
  width: 98%;
  margin-left: 3%;
}

.myform-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-left: 31vw;
  width:8vw;

}

/* Responsive CSS */

@media screen and (max-width: 553px){
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    color: #fff;
    background-color: #8FB2E7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    z-index: 1000;
    box-shadow: 0 0 2px var(--grey-color-light);
    padding-bottom: 20px;
  }

  .logout-btn a{
    background-color:  #FFC000;
    color: #000;
    padding: 8px 15px;
    text-align: center;
    border-radius: 25px;
    font-size: 8px;
    font-weight: 700;
    margin: 0px;
    text-decoration: none;
  }

  .logo_item img {
    width: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo_item{
    font-size: 9px!important;
    font-weight: 700;
  }

  .reg-bt button{
    background-color: #FFC000;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    font-size: 12px!important;
    font-weight: 700;
    border: none;
    margin-left: 28%!important;
  
  }

  .asign-by, .asign-to{
    margin-top: 20px;
  }

  /* .related-doc{
    margin-top: 20px;
  } */

  .form-col-sec label{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 5px;
    padding-top: 0px;
  }
  

  .doc-add-btn button{
    padding: 8px 30px;
    border-radius: 30px;
    margin-top: 10px!important;
    background: #FFC000;
    color: #000;
    font-size: 14px!important;
    border: none;
  }

  .doc-sec input{
    margin-left: 0px!important;
  }

 

  .nav-h3 h3{
    font-size: 20px;
    font-weight: 600;
    font-family:  'Poppins'!important;
    display: none;
  }
  


  /* .logout-btn{
    margin-top: -50px!important;
  } */

  /* .regiter-new-btn{
    margin-top: 10px;
    margin-left: 140px;
  } */
  
}

@media only screen and (min-width: 320px) and (max-width: 820px){
  .nav-h3 {
    display: flex;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}
}

.discrip-chat {
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}



.clock {
  float: right;
  margin-right: -1.8rem;
  font-size: 10px;
  background-color: #FCF6FF;
  color: #9668AC;
  border-radius: 10px;
  padding: 2px 8px;
  padding-left: 0.5rem;
}


.ticket-table{
  position: sticky;
  top: 0;
  z-index: 1;
}

/* *************************** new model popup complain card ************************************* */

/* school complain main card css */


.schol-complaner{
  /* display: flex;
  gap: 5px; */
  padding: 10px;
  background: #ffc881;
  /* width: 100%; */
  width: 400px;
  text-align: center;
  border-radius: 10px;
  border-bottom: 2px solid #eb8e15;
  /* border-right: 2px solid #f3aa4b; */
 
}

.cmpln-users-sec{
  display: flex;
  gap: 5px;
}

.schl-avatar img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 20px;

}

.schl-comlnr-user {
  padding-right: 6px;
  border-right: 2px solid #f9f9f9;
}

.schl-comlnr-user h4{
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.cmpln-time p{
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 0px;
}

.compny-comln-received h4{
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


/* company complain received second card css */

.company-emplyr{
  /* display: flex;
  gap: 5px; */
  padding: 10px;
  background: #76b5f5;
  /* width: 100%; */
  width: 400px;
  text-align: center;
  border-radius: 10px;
  margin-left: 30px;
  border-top: 2px solid #3699ff;
  /* border-left: 2px solid #3699ff; */
}


.emply-avatar img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 20px;
}

.emply-avatar p{
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding-top: 5px;
  margin-bottom: 0px;
}

.assign-cmpln-dev{
  display: flex;
  gap: 5px;
}

.cmpln-emply-sec {
  padding-right: 6px;
  border-right: 2px solid #f9f9f9;
}


.cmpln-emply-sec h4{
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.cmpln-emply-sec1 h4{
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


@media screen and (max-width: 560px){
  .schol-complaner {
    padding: 10px;
    background: #ffc881;
    /* width: 100%; */
    width: 400px;
    text-align: center;
    border-radius: 10px;
    border-bottom: 2px solid #eb8e15;
    /* border-right: 2px solid #f3aa4b; */
    margin-left: -12px;
  }
  .arrow {
    width: 0;
    height: 20px;
    background-color: #333;
    position: relative;
    margin-left: 100px;
}

}

@media only screen and (min-width: 560px) and (max-width: 768px){
  .schol-complaner {
    padding: 10px;
    background: #ffc881;
    /* width: 100%; */
    width: 400px;
    text-align: center;
    border-radius: 10px;
    border-bottom: 2px solid #eb8e15;
    /* border-right: 2px solid #f3aa4b; */
    margin-left: -12px;
  }
  .arrow {
    width: 0;
    height: 20px;
    background-color: #333;
    position: relative;
    margin-left: 100px;
}

}




@media only screen and (min-width: 320px ) and (max-width: 768px ){
  .chat-sect{
    margin-top: 20px;
  }
  .child2{
    height: 700px!important;
  }
  
  .new {
    /* border: 1px solid red; */
    position: relative;
    /* min-width: 9vw; */
    padding: 1rem;
    margin-right: 4rem!important;
    margin-left: 34px;
    }
    .vertical-line{
      display: none;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1;
      left: 0vw;
      top: 7vh;
      width: 100%;
      height: 93vh;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.4);
      padding: 50px 20px 40px 20px!important;
      animation: fadeIn 0.5s ease;
  }

  .modal-heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e1f0ff;
    padding: 14px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    display: inline-grid!important;
    align-items: center;
    height: 260px!important;
}

.chain-container {
  display: flex;
  align-items: center;
  margin-right: 0vw;
  position: relative;
  left: 0vw;
  overflow-x: scroll;
  overflow-y: auto;
  box-sizing: border-box;
  padding-top: .5vh!important;
  width: 350px!important;
  /* padding-left: -0px; */
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: vh;
  font-size: 2rem;
  position: relative;
  left: 0vw;
  top: 0vh;
  float: left;
  
}

.person {
  border-top: 2px solid #3699ff;
  margin-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 2vw;
  padding: 10px;
  background: #76b5f5;
  margin-left: 35px!important;
  border-radius: 10px;
  margin-bottom: 10px;
}

.person-details {
  font-size: 14px;
  color: #000;
  display: flex;
  flex-direction: column;
  min-width: 260px!important;
  margin-top: 10px;
}

.ajax-container {
  /* border: 2px solid black; */
  /* position: absolute; */
  margin-top: 260px!important;
  width: 100%;
  height: 100%;
  left: 5px;
  overflow-y: auto;
}

.view-card {
  height: auto;
  width: 85%!important;
  border: 2px solid #ffb2b2;
  border-radius: 8px;
  padding: 5%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 5vh;
  margin-top: 1vh;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffc8b361;
  padding: 8px 15px;
  border-radius: 8px;
  width: 114%!important;
  margin-left: -7%!important;
  margin-top: -8%!important;
}

.view-card.left-card {
  margin-left: 12%!important;
  background-color: #e9fddb;
}

.clock {
  float: right;
  margin-right: -.6rem!important;
  font-size: 7px!important;
  background-color: #FCF6FF;
  color: #9668AC;
  border-radius: 10px;
  padding: 2px 8px!important;
  padding-left: 0.5rem;
  margin-top: -8px!important;
}

.ticket-header .from {
  font-size: 11px!important;
  font-weight: 500;
  color: #f64e60;
}

.ticket-header .timer-chat {
  font-size: 11px!important;
  font-weight: 500;
  color: black;
}

.ticket-header .status {
  font-size: 11px!important;
  font-weight: 500;
  color: #25c997;
  background-color: #e2fff6;
  padding: 0% 2%;
  border-radius: 10px;
  min-width: 26%;
  text-align: center;
}

.discrip-chat {
  font-size: 10px!important;
  font-weight: 500;
}

.discrip-btnn{
  text-align: left!important;
}

.discrip-btnn button {
  font-size: 11px!important;
  font-weight: 400;
  padding: 2px 15px;
  margin-bottom: 10px;
  border: none;
  color: #fff;
  border-radius: 5px;
  background: #3699ff;
}


}


@media screen and (max-width: 820px){
  .card {
    width: 29vw;
    height: 220px;
  }

  .chat-sect{
    margin-top: 20px;
  }
  
  
}

@media screen and (max-width: 1024px){
  .card {
    width: 30vw;
    height: 220px;
  }
  .chat-sect{
    margin-top: 20px;
  }

  
}

@media only screen and (min-width: 1024px) and (max-width: 1440px){
  .card {
    width: 18.3vw;
    height: 170px;
}
}






@media screen and (max-width: 768px){
  .reg-bt button{
    background-color: #FFC000;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    margin-left: 38%;
  
  }

  .form-col-sec label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 5px;
    padding-top: 10px;
}

  /* .doc-sec input{
    margin-left: 70px;
  } */

  .doc-add-btn button{
    padding: 10px 30px;
    border-radius: 30px;
    margin-top: 10px!important;
    background: #FFC000;
    color: #000;
    font-size: 14px;
    border: none;
  }

  .nav-h3 h3{
    font-size: 20px;
    font-weight: 600;
    font-family:  'Poppins'!important;
    display: none;
  }

}


@media screen and (max-width: 990px){
  .reg-bt button{
    background-color: #FFC000;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    margin-left: 41%;
  
  }

  .form-col-sec label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 5px;
    padding-top: 10px;
}

  .doc-sec input{
    margin-left: 0px;
  }

  .doc-add-btn button{
    padding: 10px 30px;
    border-radius: 30px;
    margin-top: 10px!important;
    background: #FFC000;
    color: #000;
    font-size: 14px;
    border: none;
  }
  .nav-h3 h3{
    font-size: 20px;
    font-weight: 600;
    font-family:  'Poppins'!important;
    display: none;
  }
}

@media screen and (max-width: 1024px){
  .reg-bt button{
    background-color: #FFC000;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    margin-left: 41%;
  
  }
  
 
  .doc-sec input{
    margin-left: 0px;
  }

  .doc-add-btn button{
    padding: 10px 30px;
    border-radius: 30px;
    margin-top: 10px!important;
    background: #FFC000;
    color: #000;
    font-size: 14px;
    border: none;
  }

  .nav-h3 h3{
    font-size: 20px;
    font-weight: 600;
    font-family:  'Poppins'!important;
    display: none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1024px){
  .nav-h3 h3{
    font-size: 20px;
    font-weight: 600;
    font-family:  'Poppins'!important;
    display: none;
  }
}



@media screen and (max-width: 768px) {
  .myform-label {
      display: block;
      width: auto;
      text-align: left;
      margin-right: 0;
  }

  .myform-input,
  .myform-select,
  .myform-textarea {
      width: calc(50% - 15px);
      margin-right: 15px;
      margin-bottom: 15px;
  }

  .myform-textarea {
      width: calc(100% - 30px);
      margin-right: 0;
  }
}



.table-container{
  position: relative;
  background-color: #bda9a93b;
  width: 100%;
  height: 800px;
  overflow-y: scroll;
  z-index: 1;
  margin-top: 2px;
  transition: height 0.3s ease;
}
/* -------------------------------table css start----------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  top: 0vh;
  margin-top: 10px;
  /* display: block; */
  overflow: auto;
}

/* Adjust the width and styling of each <th> containing <select> for filtering */
th {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  background-color: #9668AC;
  color: #fff;
}

th select {
  width: 100%;
  max-width: 200px;
  /* padding: 6px; */
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 0.8rem;
  color: black;
}

/* Optional: Adjust styling on hover or focus */
th select:hover,
th select:focus {
  border-color: #2599ea; /* Example color */
}

/* Ensure all <td> elements are centered */
td {
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  /* Ensure long content wraps and does not overflow */
  word-wrap: break-word;
  overflow: hidden;
  white-space: normal;
}

/* Example of targeting specific cells */
td.complain-details {
  max-width: 500px; /* Adjust as needed */
}

/* Styling for alternating row backgrounds */
tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Styling for view buttons */
.view-btn {
  background-color: #2599ea;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.view-btn:hover {
  background-color: #0056b3;
}

.view-btn > a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
}

.cmp-tbl-head{
  position: sticky!important;
  top: 0!important;
  z-index: 1;
}

/* Sticky header */
.thead {
  position: sticky!important;
  top: 0!important;
  z-index: 1; /* Ensure it appears above other content */
}

/* Dashboard view button */
.view-btn-dash {
  background-color: white;
  color: black;
  padding: 5px 10px;
  margin-bottom: 0;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  position: absolute;
  right: 1%;
  bottom: 1%;
}

.view-btn-dash:hover {
  background-color: black;
  color: white;
}

/* Center alignment for view button */
.crd-view-btn {
  text-align: center !important;
}
/* -------------------------------table css end----------------------- */

/*========================= VIEW COMPONENTS CSS STARTED ==================*/
.form-container{
position: absolute;
width: 100%;
top: 10vh;
}
.myform-label {
display: inline-block;
  width: 16vw;
  text-align: left;
  margin-right: 20px;
  font-weight: bold;
  margin-left: 2vw;
} */
.myform-input,
.myform-select,
.myform-textarea {
  width: 250px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}
.myform-textarea {
  height: 171px;
  resize: vertical;
  width: 98%;
  margin-left: 3%;
}
.myform-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-left: 31vw;
  width:8vw;
}


@media (max-width: 768px) {
  .navbar{
    width: 100%!important;
    overflow-x: hidden!important;
  }
  body{
    width: 100%;
    overflow-x: hidden!important;
  }
  .myform-label {
      display: block;
      width: auto;
      text-align: left;
      margin-right: 0;
  }

  .myform-input,
  .myform-select,
  .myform-textarea {
      width: calc(50% - 15px);
      margin-right: 15px;
      margin-bottom: 15px;
  }

  .myform-textarea {
      width: calc(100% - 30px);
      margin-right: 0;
  }
}
.parent {
  display: flex;
  /* height: 57vh; */
  overflow: clip;
  padding-top: 20px;
}
.child {
  flex: 1; /* Equal width for both child elements */
  margin-right: 10px; /* Add some margin between child elements */
  overflow-y: auto;
}
.view-card {
  height: auto;
  width: 53%;
  border: 2px solid #ffb2b2;
  border-radius: 8px;
  padding: 5%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 5vh;
  margin-top: 1vh;
}

.view-card.left-card {
  margin-left: 44%; 
  background-color: #e9fddb;
}

.view-card.right-card {
  margin-left: 3%;
}


.ticket-header {
display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffc8b361;
  padding: 8px 15px;
  /* padding-left: 3%;
  padding-right: 3%; */
  border-radius: 8px;
  width: 125%;
  margin-left: -13%;
  margin-top: -12%;
}

.ticket-header .from {
  font-size: 14px;
  font-weight: 500;
  color: #f64e60;;
}


.ticket-header .timer-chat {
  font-size: 14px;
  font-weight: 500;
  color: black;
}

.ticket-header .status {
  font-size: 14px;
  font-weight: 500;
  color: #25c997;
  background-color: #e2fff6;
  padding: 0% 2%;
  border-radius: 10px;
  min-width: 26%;
  text-align: center;
}

.discrip-chat{
  font-size: 12px;
  font-weight: 500;
}

.discrip-btnn button{
  font-size: 14px;
  font-weight: 400;
  padding: 2px 15px;
  margin-bottom: 10px;
  border: none;
  color: #fff;
  border-radius: 5px;
  background: #3699ff;
}

.sub-prim-btn{
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  background: #9668AC;
  color: #fff;
}

.sub-prim-btn:hover{
  color: #fff;
}
/*========================= VIEW COMPONENTS CSS ENDED ==================*/
/*========================= MODAL CSS STARTED ==================*/
/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0vw;
  top: 7vh;
  width: 100%;
  height: 93vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 50px;
  animation: fadeIn 0.5s ease;
}

.modal-content {
  background-color: #FCF6FF;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 100%;
  height: 670px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  animation: scaleIn 0.5s ease;
  position: relative;
}

/* Close Button Styling */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 2%;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Heading Styling */
.modal-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e1f0ff;
  padding: 14px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 140px;
}

.chain-container {
  display: flex;
  align-items: center;
  margin-right: 0vw;
  position: relative;
  left: 0vw;
  overflow-x: scroll;
  box-sizing: border-box;
  padding-top:2vh;
}


.person {
  border-top: 2px solid #3699ff;
  margin-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 2vw;
  padding: 10px;
  background: #76b5f5;
  margin-left: 35px;
  border-radius: 10px;
 margin-bottom: 10px;
  /* border-style: ; */
}


.person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.line {
  height: 2px;
  background-color: #333;
  flex-grow: 1;
  margin: 0 10px;
}

.person-details {
  font-size: 14px;
  color: #000;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}

.person-details p {
  margin: 0;
}
.arrow {
  width: 0; /* Length of the arrow */
  height: 20px; /* Thickness of the arrow */
  background-color: #333; /* Color of the arrow */
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 51%;
  right: -29px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 20px solid #333;
}
.vertical-line {
  width: 0px;
  height: 140px;
  border-left: 2px solid #333;
}

.ajax-container{
  /* border: 2px solid black; */
  /* position: absolute; */
  margin-top: 130px;
  width: 100%;
  height: 100%;
  left: 5px;
  overflow-y: auto;
}

.clock{
  float: right;
  margin-right: -1.8rem;
  font-size: 10px;
  background-color: #FCF6FF;
  color: #9668AC;
  border-radius: 10px;
  padding: 2px 8px;
  padding-left: 0.5rem;
}

.child h6{
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}
.child select{
  font-size: 14px;
  font-weight: 500;
}
.child textarea{
  font-size: 14px;
  font-weight: 500;
  /* margin-top: 10px; */
}

.child button{
  margin-top: 15px;
}

.add-reply-sec label{
  margin: 10px 0px!important;
  font-size: 16px;
  font-weight: 500;
}

.add-reply-sec textarea{
  font-size: 14px;
  font-weight: 500;
}

.reply-doc-sec label{
  margin: 10px 0px!important;
  font-size: 16px;
  font-weight: 500;
}

.reply-doc-sec input{
  font-size: 14px;
  font-weight: 500;
}

.reply-url-sec label{
  margin: 10px 0px!important;
  font-size: 16px;
  font-weight: 500;
}

.reply-url-sec input{
  font-size: 14px;
  font-weight: 500;
}

input::placeholder{
  font-size: 14px;
  font-weight: 500;
}

.discussion-call-sec label{
  margin: 10px 0px!important;
  font-size: 16px;
  font-weight: 500;
}

.discussion-call-sec input{
  font-size: 14px;
  font-weight: 500;
}


.discussion-add-btn button {
  font-size: 16px;
  font-weight: 500;
  border: none;
  margin-left: 0px;
  border-radius: 10px;
  padding: 8px 20px;
  background: #9668AC;
  color: #fff;
}

.discussion-add-btn button:hover{
  background: #9668AC;
  box-shadow: 5px 5px 15px #9668AC;
}




#ticketDetails{

}
/*========================= MODAL CSS ENDED ==================*/

/*=========================TIMER START ==================*/
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6vh;
  font-size: 2rem;
  position: relative;
  left: 0vw;
  top: 0vh;
  float:left;
}
.clock-icon {
  color: #3699ff;
  margin-right: -5px;
  margin-left: 16px;
  font-size: 18px;
  font-weight: 700;
}

.countdown-container span{
  font-size: 18px;
  font-weight: 700;
}

#countdown {
color: green;
font-family: 'Courier New', Courier, monospace; /* Monospaced font */
min-width: 10ch; /* Width to accommodate the timer string */
text-align: center; /* Center the text */
margin-left: 10px;
}
.short-head {
  font-size: 16px;
  font-weight: 600;
  color: #3699ff;
  display: flex;
  position: relative;
  margin-right: 0vw;
  margin-top: 0vh;
  padding-left: 1rem;
}
.new {
  /* border: 1px solid red; */
  position: relative;
  /* min-width: 9vw; */
  padding: 1rem;
  margin-right: 1rem;
  }
/*=========================TIMER ENDED ==================*/





@media screen and (max-width: 553px){

}

@media screen and (max-width: 768px) {
  #sidebarOpen {
    font-size: 25px;
    display: block;
    margin-right: 10px;
    cursor: pointer;
    color: var(--grey-color);
  }
  .sidebar.close {
    left: -100%;
  }
  .search_bar {
    display: none;
  }
  .sidebar.close .bottom_content {
    left: -100%;
  }
}

@media screen and (max-width: 990px){

}

@media screen and (max-width: 1024px){

}
