@import url('font-inter.css');
:root {
  --primarycolor: #3b8665;
  --primarycolorhover: #14412d;
  --btnice:#146640;
  --btnnicetext:#4F7DF1;
}

body{
    margin: 0;
    padding: 0;
    border-spacing: 0;
    font-family: 'Inter', sans-serif;
    
}

font.logo{
  margin-left: 2vh;
  color: var(--primarycolorhover);
  font-weight: 550;
  font-size: 30px;
  background-color: var(--primarycolor);
  border-radius: 15px;
  padding: 5px;
}
font.logo-sub{
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  background-color: var(--primarycolor);
  border-radius: 15px; /* Rounded corners for the background */
  padding: 5px;
}
*, ::after, ::before{
    box-sizing: border-box;
    font-weight: 600;
}
.container-text {
  text-align: center; /* Centers the content inside */
}

.container-text p {
  background-color: var(--primarycolor); /* Semi-transparent white background */
  padding: 5px; /* Padding around the text */
  display: inline-block; /* Ensures the background only applies to the text */
  border-radius: 15px; /* Rounded corners for the background */
  max-width: 80%; /* Restricts the width of the text */
  word-wrap: break-word; /* Ensures long words break and don't overflow */
}

.heading-text {
  font-size: 24px; /* Adjust font size as needed */
  font-weight: bold;
}

.sub-text2 {
  font-size: 16px; /* Adjust font size as needed */
}





/*------custom-scroll-bar - from w3schools.com------------------*/
/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 12px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }



/* 
.sub-table{
  margin: 30px;
} */
.input-text{
    border-radius: 4px;
    border: 0.5px solid rgb(226, 226, 226);
    padding: 10px;
    width: 92%;
    transition: 0.2s;
    outline: none;
}

.input-text{
    border: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 26px;
    background-color: #fff;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 300;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.input-text:hover{
    background-color: rgb(250, 250, 250);
    transition: 0.2s;
    outline: none;
}

.input-text:focus{
    border: 1px solid rgb(10,118,216);
    transition: 0.2s;
}

.input-text::placeholder{
    font-family: 'Inter', sans-serif;
}



/* -----------Buttons---------------*/
.btn{
    cursor: pointer;
    padding: 8px 20px;
    outline: none;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
}


.btn:hover{
    background-color: var(--primarycolorhover);
    box-shadow: none;
    transition: all 0.5s;
    font-family: 'Inter', sans-serif;

}


.btn-primary{
    background-color: var(--primarycolor) ;
    border: 1px solid var(--primarycolor) ;
    color: #fff ;
    border-radius: 15px;
    box-shadow: 0 3px 5px 0 rgba(57,108,240,0.3);
}

.btn-primary-soft{
    background-color: #D8EBFA ;
    /*border: 1px solid rgba(57,108,240,0.1) ;*/    color: #1969AA;
    font-weight: 500;
    font-size: 16px;
    border: none;
    /*box-shadow: 0 3px 5px 0 rgba(57,108,240,0.3)*/
}


.btn-primary-soft:hover{
    background-color: var(--primarycolor) ;
    /*border: 1px solid rgba(57,108,240,0.1) ;*/
    color: #fff ;
    box-shadow: 0 3px 5px 0 rgba(57,108,240,0.3);
}


.btn-in-text{
    font-size: 15px;
    letter-spacing: 0.5px;
}

.non-style-link:link{
    text-decoration: none;
    color: #333 ;
}

.non-style-link:visited, 
.non-style-link:hover, .non-style-link:active{
  text-decoration: none;
  color: var(--primarycolor) ;
}




.btn-label{
    margin-left: 10px;
    padding: 12px 12px;
    outline: none;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 5px;
    background-color: #f0f0f073;
    border: 1px solid rgba(57,108,240,0.1) ;
    font-family: 'Inter', sans-serif;
}


.sub-table{
    border: 1px solid #ebebeb;
    border-radius: 8px;
    
}



.filter-container-items{
  margin-top: 7.5px;
  margin-left: 20px;


}
.table-headin{
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    border-bottom: 3px solid var(--primarycolor);
}

.overlay-content {
  max-height: 80%; /* Set maximum height for the content */
  overflow-y: auto; /* Enable vertical scrolling */
  background: white; /* Background color for content */
  padding: 20px; /* Padding for content */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: shadow for depth */
}





        
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    opacity: 1;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
    
  }
  
  .popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 50%;
    position: relative;
    transition: all 5s ease-in-out;
    /* height: 90%; */
  }
  
  .popup h2 {
    margin-top: 0;
    color: #333;
  }
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: var(--primarycolorhover);
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }


input[type=search] {
    background-image: url('../img/search.svg');
    background-position: 10px 50%;
    background-repeat: no-repeat;
    transition: 0.5s;
    padding: 8px 20px 8px 40px;
}

input[type=search]:focus {
    transition: 0.5s;
}

.box {
  width: 120px;
  height: 30px;
  border: 1px solid #e9ecef;
  font-size: 14px;
  color: #212529;
  background-color: #fff;
  line-height: 26px;
  font-weight: 300;
  border-radius: .25rem;
  padding: .375rem .75rem;
  line-height: 1.5;
  width: 100%;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}



.btn-primary-gray{
  background-color: #fff;
  border: 2px solid #c9cbce9f;
  color: #212529d0;
  box-shadow: 0 3px 5px 0 rgba(95, 95, 97, 0.3);
}



.btn-primary-gray:hover{
  background-color: #5185ffa9;
  box-shadow: 0 3px 5px 0 rgba(95, 95, 97, 0.3);
}



.button-icon{
  
  background-position: 10px 50%;
  background-repeat: no-repeat;
  transition: 0.5s;
  padding: 8px 20px 8px 40px;
}




.menu-btn{
  padding:6px;
  color: #3b3b3b;
  background-position: 30% 50%;
  background-repeat: no-repeat;
  transition: 0.5s;
  
}

.sub-table {
  width: 100%;
}

.menu-active{
  color: var(--primarycolor);
  border-right: 10px solid var(--primarycolor);
  background-color: var();
}

.menu-btn:hover{
  background-color: var(--btnice);
  color: var(--primarycolor);
}

.non-style-link-menu:link, .non-style-link-menu:visited,  .non-style-link-menu:active{
  text-decoration: none;
  color: #3b3b3b;
}
.non-style-link-menu:hover{
  text-decoration: none;
  color: var(--primarycolor);
}

.non-style-link-menu-active:link, .non-style-link-menu-active:visited,  .non-style-link-menu-active:active{
  text-decoration: none;
  color: var(--primarycolor);
}



.menu-icon-dashbord{
  background-image: url('../img/icons/dashboard.svg');
}


.menu-icon-doctor{
  background-image: url('../img/icons/doctors.svg');
}
.menu-icon-schedule{
  background-image: url('../img/icons/schedule.svg');
}
.menu-icon-appoinment{
  background-image: url('../img/icons/book.svg');
}
.menu-icon-patient{
  background-image: url('../img/icons/patients.svg');
}
.menu-icon-logs, .menu-icon-logs-svg {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='4' width='14' height='17' rx='3' stroke='%23007bff' stroke-width='2' fill='%23eaf2fb'/%3E%3Crect x='9' y='2' width='6' height='4' rx='2' stroke='%23007bff' stroke-width='2' fill='%23fff'/%3E%3Cline x1='8' y1='9' x2='16' y2='9' stroke='%23007bff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='8' y1='13' x2='16' y2='13' stroke='%23007bff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='8' y1='17' x2='13' y2='17' stroke='%23007bff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 25px 25px;
}
.menu-icon-settings{
  background-image: url('../img/icons/settings.svg');
}
.menu-icon-session{
  background-image: url('../img/icons/session.svg');
}
.menu-icon-home{
  background-image: url('../img/icons/home.svg');
}



.menu-icon-dashbord:hover,.menu-icon-dashbord-active{
  color: var(--primarycolorhover);

  background-image: url('../img/icons/dashboard-hover.svg');
}


.menu-icon-doctor:hover,.menu-icon-doctor-active{
  color: var(--primarycolorhover);
  background-image: url('../img/icons/doctors-hover.svg');
}
.menu-icon-schedule:hover,.menu-icon-schedule-active{
  color: var(--primarycolorhover);
  
  background-image: url('../img/icons/schedule-hover.svg');
}
.menu-icon-appoinment:hover,.menu-icon-appoinment-active{
  color: var(--primarycolorhover);
  
  background-image: url('../img/icons/book-hover.svg');
}
.menu-icon-patient:hover,.menu-icon-patient-active{
  color: var(--primarycolorhover);
  
  background-image: url('../img/icons/patients-hover.svg');
}

.menu-icon-settings:hover,.menu-icon-settings-active{
  color: var(--primarycolorhover);
  
  background-image: url('../img/icons/settings-iceblue.svg');
}

.menu-icon-session:hover,.menu-icon-session-active{
  color: var(--primarycolorhover);
  background-image: url('../img/icons/session-iceblue.svg');
}
.menu-icon-home:hover,.menu-icon-home-active{
  color: var(--primarycolorhover);
  
  background-image: url('../img/icons/home-iceblue.svg');
}





.btn-icon-back{
  background-image: url('../img/icons/back-iceblue.svg');
  background-position: 18px 50%;
  background-repeat: no-repeat;
  transition: 0.5s;
  padding: 8px 20px 8px 40px;
}

.btn-icon-back:hover{
  background-image: url('../img/icons/back-white.svg');
}


.btn-edit{
  background-image: url('../img/icons/edit-iceblue.svg');
}
.btn-edit:hover{
  background-image: url('../img/icons/edit-white.svg');
}

.btn-view{
  background-image: url('../img/icons/view-iceblue.svg');
  padding-left: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 10px;
}
.btn-view:hover{
  background-image: url('../img/icons/view-white.svg');
}

.btn-delete{
  background-image: url('../img/icons/delete-iceblue.svg');
}
.btn-delete:hover{
  background-image: url('../img/icons/delete-white.svg');
}
.btn-done{
  background-image: url('../img/icons/done.svg');
}
.btn-done:hover{
  background-image: url('../img/icons/done-hover.svg');
}

.btn-filter{
  background-image: url('../img/icons/filter-iceblue.svg');

}
.btn-filter:hover{
  background-image: url('../img/icons/filter-white.svg');
}








/* Status cards styling */
.filter-container {
  width: 100%;
  margin: 0;
  padding: 15px;
}

.status-report {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}

.stats1, .stats2 {
  flex: 1;
  min-width: 200px;
}

.dashboard-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #c9cbce9f;
  height: 100%;
}

.h1-dashboard {
  font-size: 30px;
  font-weight: 600;
  color: #2d6a4f;
}

.h3-dashboard {
  font-size: 16px;
  color: #212529e3;
  white-space: nowrap;
}

.dashboard-icons {
  width: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .status-report {
      flex-direction: row;
      overflow-x: auto;
      padding: 10px;
      gap: 10px;
  }

  .stats1, .stats2 {
      min-width: 150px;
      margin: 0;
  }

  .dashboard-items {
      padding: 15px;
  }

  .h1-dashboard {
      font-size: 24px;
  }

  .h3-dashboard {
      font-size: 14px;
  }

  .dashboard-icons {
      width: 40px;
      height: 40px;
  }
}

/* Approve and Reject Button Hover Effects */
.btn-approve,
.btn-reject {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-approve {
    background-color: #8ae98d !important;
    color: white !important;
    border: 1px solid #45a049 !important;
}

.btn-approve:hover {
    background-color: #2d6a4f !important;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #2d6a4f !important;
}

.btn-approve:hover svg {
    stroke: white;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

.btn-reject {
    background-color: #fc6358 !important;
    color: white !important;
    border: 1px solid #d32f2f !important;
}

.btn-reject:hover {
    background-color: #b71c1c !important;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #a01616 !important;
}

.btn-reject:hover svg {
    stroke: white;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

/* Appointment Button Specific Styles */
.btn-approved {
    background-color: #696969 !important;
    color: white !important;
    border: 1px solid #45a049 !important;
    padding-top: 2px !important;
    padding-bottom: 12px !important;
    margin-top: 10px !important;
    cursor: not-allowed;
    border-radius: 15px;
}

.btn-rejected {
    background-color: #F44336 !important;
    color: white !important;
    border: 1px solid #d32f2f !important;
    padding-left: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    margin-top: 10px !important;
    cursor: not-allowed;
    border-radius: 15px;
}

.btn-approved:hover {
  background-color: #008612 !important;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: #00460c !important;
}

.btn-rejected:hover {
  background-color: #d32f2f !important;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-color: #b71c1c !important;
}

.btn-session-passed {
    background-color: #6c757d !important;
    color: white !important;
    padding-left: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    margin-top: 10px !important;
    cursor: not-allowed;
}

.btn-approved svg,
.btn-rejected svg {
  padding-left: 20px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  margin-top: 10px !important;
}

.btn-approve,
.btn-reject {
    padding-left: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    margin-top: 10px !important;
}

/* Consolidated Disabled Button Style */


/* Hide scrollbar but keep functionality */
.status-report::-webkit-scrollbar {
  display: none;
}

.status-report {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dashboard-icons-setting{
  background-color: rgba(184, 184, 184, 0.247);
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 7px;
  margin-left: 5px;
  margin-right: 20px;
  
}

.setting-tabs:hover{
  background-color: #d6d6d657;
}


.doctor-header{
  background-image: url(../img/b8.jpg);
  color: rgba(0, 0, 0, 0.87);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 20px;
  padding-left: 35px;
}

.patient-header{
  background-image: url(../img/b3.jpg);
}
@media(max-width: 768px){
  .doctor-header{
  padding: 0px;
  .date-container1{
    width:75%;
  }


}

.search-items{
  padding:20px;
  margin:10px;
  width:95%;
  display: flex;
  padding-left:0;
  padding-left: 30px;
  box-sizing: border-box;
  line-height: 1.5;
  box-shadow: 0 3px 5px 0 rgba(95, 95, 97, 0.068);
}


.h1-search{
  margin: 0;
  padding: 0;
  font-size: 23px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 10px;
}

.h3-search{
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #212529e3;
  
}

.h4-search{
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #212529e3;
}

.btn-book{
  background-image: url('../img/icons/book-balck.svg');
  background-position: 68% 50%;
  background-repeat: no-repeat;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .container {
      flex-direction: column; /* Stack menu and body vertically */
  }

  .menu {
      width: 100%; /* Full width for smaller screens */
      min-width: 0; /* Reset minimum width */
      display: none; /* Initially hide the menu */
      flex-direction: column; /* Stack items vertically */
  }

  .menu.show {
      display: block; /* Show the menu when 'show' class is added */
  }

  .dash-body {
      width: 100%; /* Full width for the body */
  }
  .abc{
    height: 550px;
    overflow: auto;
  }
  .btn-filter{
    background-image: url('../img/icons/filter-iceblue.svg');
    background-position: 15px 50%;
    font-size:0px;
  }
  .btn-search{
    background-image: url('../img/search.svg');
    background-position: 15px 50%;
    font-size:0px;
  }
  .btn-view{
    background-image: url('../img/icons/view-iceblue.svg');
    background-position: 7px 25%;
    font-size:0px;
    padding: 12px;
    padding-right: 20px;
  }
  .menu-icon-session:hover,.menu-icon-session-active{
    background-image: url('../img/icons/session-iceblue.svg');
    background-position: 7px 25%;
    font-size:0px;
    padding: 12px;
    padding-right: 20px;
  }
  


  .hamburger {
      display: flex; /* Show hamburger icon on smaller screens */
      position: fixed; /* Make sure it's fixed in place */
      top: 20px; /* Ensure it's not hidden */
      right: 20px;
      left: auto;

  }
  .header-search {
      display: flex;
      justify-content: center;
      width: 45%;
      margin-top: 40px;
      padding-left: 10px;
  }
  .nav-bar{
      margin-top:20px
  }
  .date-container {
      width: 50%; /* Ensure it spans full width */
  }

  .date-container p {
      text-align: center; /* Ensure content aligns left within table cells */
  }
  .btn-label {
      margin-left: 0; /* Keep margin-left at zero */
      padding: 0; /* Ensure no extra padding */
      display: flex; /* Ensure the button aligns properly with Flexbox */
      justify-content: flex-start; /* Align the button content to the left */
      align-items: center; /* Vertically center the content */
      width: auto; /* Ensure it doesn't take unnecessary width */
  }
  .dashbord-tables {
    width: 100%;
}
.responsive-td {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}


.sub-table th, .sub-table td {
    font-size: 14px;
}
}}