* {
  margin: 0px;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: scroll !important;
}

/* =============== Navigation ================ */
.navigation {
  position: fixed;
  width: 330px;
  height: 100%;
  min-height: fit-content;
  overflow-y: scroll;
  left: 0%;
  background-color: #03668B;
  transition: 0.5s;
  overflow-x: hidden;
}

.navigation::-webkit-scrollbar {
  width: 0;
  height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.navigation.active {
  width: 75px;
}

.navigation .side-logo {
  display: block;
  width: 100%;
  display: flex;
  padding: 10px;
}


.navigation .side-logo a {
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  gap: 10px;
}


.navigation .icon img {
  position: relative;
  display: block;
  padding: 0px 5px;
  z-index: 10;
  width: 45px;
}


.navigation .side-logo img {

  width: 55px;
}

.navigation ul {
  width: 100%;
  padding-left: 7px;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.navigation ul li.active {
  background-color: white;
}

.navigation .line-through {
  height: 1px;
  width: 90%;
  background-color: white;
  margin: auto;
}


.navigation .siderBar-category {
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  text-align: left;
  color: #5dc3e9;
  padding: 15px 20px 5px;
}

.navigation ul li a {
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: white;
  gap: 13px;
  padding: 14px 17px 14px 10px;
}

.navigation ul li.active a .title {
  color: royalblue;
}

.navigation .icon i {
  position: relative;
  display: block;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  padding: 0px 5px;
}

.navigation .icon {
  font-size: 1.75rem;
}

.navigation a .title {
  display: block;
  text-align: start;
  white-space: nowrap;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}

/* --------- curve outside ---------- */
.navigation ul li.active a::before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px white;
  pointer-events: none;
}

.navigation ul li.active a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px white;
  pointer-events: none;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
}

.toggle .icon {
  padding: 12px 10px;
  border-radius: 30px;
  background-color: #7aaec2;
}

.toggle .icon img,
span.icon.d-block img {
  width: 20px;
  transform: scale(-1);
}


/* ===================== Main ===================== */
.main {
  position: absolute;
  width: calc(100% - 330px);
  left: 330px;
  min-height: 100vh;
  background: white;
  transition: 0.5s;
  padding: 30px 3vw;
}

.main.active {
  width: calc(100% - 75px);
  left: 75px;
}

.views-charts {
  width: 100%;
  margin-top: 30px;
}

.views-charts .date-input {
  display: flex;
  gap: 10px;
}

.views-charts .date-input input {
  width: 80px;
  border-radius: 20px;
  display: block;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 5px;
  font-size: 12px;
  text-align: center;
  color: #817c9b;
}

.views-charts .views-chart-wrapper {
  background-color: #EFEFEF;
  min-width: 270px;
  flex-grow: 1;
}

.views-charts .views-chart-wrapper:hover {
  background-color: #C1C1C1;
}

.views-charts .views-chart-wrapper:last-child {
  background-color: transparent;
  min-width: fit-content;
  width: fit-content;
}

.exam-territory h1 {
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #2b2b2d;
  position: relative;
  padding: 16px 0px 0px;
  margin-bottom: 10px;
}

.exam-territory h1 img {
  padding: 10px;
  position: absolute;
  top: 65%;
  width: 35px;
  transform: translateY(-50%);
  left: -40px;
  color: #2b2b2d;
}

.exam-status {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  text-align: left;
  color: #03668b;
  margin-bottom: 20px;
}

.exam-action {
  margin-bottom: 10px;
}

.exam-action>* {
  margin-bottom: 10px;
}

.exam-action button {
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  padding: 5px 13px;
  background-color: #0055FF;
  border-radius: 20px;
  border: none;
  margin-right: 15px;
}


    .exam-action a {
        font-size: 18px;
        font-weight: normal;
        font-style: normal;
        text-align: center;
        color: #ffffff;
        padding: 5px 13px;
        background-color: #0055FF;
        border-radius: 20px;
        border: none;
        margin-right: 15px;
        text-decoration:none;
    }


button#create-new-patient,
button#process-patient {
  padding: 5px 30px;
  background-color: #8B6BEF;
}

button#process-patient {
  background-color: #C46BEF;
}

.exam-action input {
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #707070;
  padding: 5px 15px;
  border-radius: 20px;
  border: none;
  margin-right: 15px;
  background-color: #EDF1F5;
}

.views-charts p {
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  font-style: normal;
  text-align: left;
  color: #1d1d1d;
}


.apexcharts-legend {
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: fit-content;
}


.line-chart {
  margin: 20px 0px;
}

.exams-filter-section {
  margin-bottom: 20px;
  background-image: url(../images/filter-bg.png);
  background-position: center;
  background-size: cover;
  background-color: #03668bc4;
  padding: 30px;
  border-radius: 20px;
  background-blend-mode: color-dodge;
}


.exams-filter-section h1 {
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.exams-filter-section .exam-filter-btn {
  margin-bottom: 20px;
  gap: 20px;
}

.exams-filter-section .exam-filter-btn button {
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  padding: 5px 13px;
  background-color: #0055fe;
  border-radius: 20px;
  border: none;
  margin-right: 15px;
}

.exams-filter-section .exam-filter-btn button:last-child {
  background-color: #5dc3e9;
}


.exams-filter-section .exam-filter-btn label span {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #393939;
}

.exams-filter-section .exam-filter-btn label select {
  text-align: center;
  color: #817c9b;
  font-size: 14px;
  display: inline-block;
  margin: 0px 10px;
  border-radius: 24px;
  padding: 10px 30px;
  background: #edf1f5
}

.exams-filter-section .exam-filter-btn label input {
  margin-left: 20px;
  margin-right: 2px;
  width: 12px;
  height: 12px;
}


.exam-filter-inputs {
  margin-top: 20px;
  gap: 20px;
}

.exam-filter-inputs input,
.exam-filter-inputs select {
  background-color: #EDF1F5;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: #817c9b;
  padding: 8px 17px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: none;
  flex-grow: 1;
}

.patients-list {
  padding: 13px 22px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 2px;
  overflow: hidden;
  border-radius: 20px;
}

.patients-list h1 {
  color: #3366CC;
}

.patients-list .patients-list-header {
  margin-bottom: 35px;
}

.patients-list .patients-list-header label span {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #393939;
}

.patients-list .patients-list-header label select {
  text-align: center;
  color: #817c9b;
  font-size: 14px;
  display: inline-block;
  margin: 0px 10px;
  border-radius: 24px;
  padding: 5px 20px 5px 10px;
  background: #edf1f5
}

.patients-list .patients-list-header .patients-list-search {
  width: fit-content;
  position: relative;
  top: 0px;
}

.patients-list .patients-list-header .patients-list-search input {
  background-color: #EDF1F5;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: #817c9b;
  width: 285px;
  padding: 8px 38px 8px 17px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: none;
}

.patients-list .patients-list-header .patients-list-search span {
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}

.patients-list .patients-list-table {
  width: 100%;
  overflow-x: auto;
}


.patients-list .patients-list-table table {
  min-width: 1100px;
  width: 100%;
  border-collapse: collapse;
}

.patients-list .patients-list-table table thead th,
.patients-list .patients-list-table table tbody td {
  font-size: 13px;
  font-style: normal;
  padding: 17px 7px;
  text-align: center;
  border: 1px solid white;
}

.patients-list .patients-list-table table thead th {
  color: #4B4279;
}

.patients-list .patients-list-table table thead th input {
  width: 21px;
  height: 22px;
}

.patients-list .patients-list-table table thead th select {
  background-color: white;
  font-weight: 700;
  color: #4B4279;
  border: none;
  padding: 10px;
}

.patients-list .patients-list-table table tbody td {
  background-color: #F4FAFF;
  color: #574B90;
}

.patients-list .patients-list-table table tbody td img {
  width: 30px;
}

.patients-list .patients-list-table table tbody td input {
  width: 21px;
  height: 22px;
}


.green {
  background-color: #8CFEC5 !important;
}

.blue {
  background-color: #7CDFEF !important;
}

.red {
  background-color: #FF8F8F !important;
}



/* Sign Up Page */
.sign-up-page {
  height: 100%;
  gap: 80px;
}

.sign-up-form>div:first-child {
  background-color: #F9FCFF;
  padding: 50px 120px;
  border-radius: 30px;
}

.menu-btn {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.menu-btn .btn {
  border: none;
}

.sign-up-form h1 {
  width: 100%;
  max-width: 736px;
  font-size: 35px;
  font-weight: bold;
  line-height: 29px;
  font-style: normal;
  text-align: center;
  color: #03668b;
  line-height: 1.1;
}

.sign-up-form p {
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #5dc3e9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sign-up-form h3 {
  font-size: 28px;
  font-weight: normal;
  line-height: 28px;
  font-style: normal;
  text-align: center;
  color: #03668b;
}

.sign-up-form form {
  width: 100%;
  height:100%;
  max-width: 436px;
  margin-left: auto;
  margin-right: auto;
}

.sign-up-form label select {
  background-color: #EDF1F5;
  width: 130px;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #817c9b;
  padding: 8px;
  border: none;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.GenderFix {
    background-color: #EDF1F5;
    width: 130px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #817c9b;
    padding: 8px;
    border: none;
    border-radius: 20px;
    display: block;
    margin-right: auto;
}

.sign-up-form label {
  width: 100%;
}

.sign-up-form label input {
  width: 100%;
  background-color: #EDF1F5;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: #817c9b;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
}


.sign-up-form button.btn {
  width: 170px;
  border-radius: 40px;
  background-color: #5dc3e9;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  padding: 10px;
}


/* ====================== Responsive Design ========================== */
@media (max-width: 1500px) {
  .sign-up-page {
    height: 100%;
    /* padding: 40px 0px; */
    gap: 50px;
  }
}

@media (max-width: 1200px) {
    .sign-up-page {
        flex-direction: column-reverse;
        padding: 40px 0px;
        height: 100%;
    }
}

@media (max-width: 768px) {


  .exams-filter-section .exam-filter-btn>div {
    flex-grow: 1;
    width: auto;
    display: flex;
  }

  .exams-filter-section .exam-filter-btn>div button {
    width: 100%;
  }

  .sign-up-page {
    gap: 30px;
  }

  .sign-up-page .logo img {
    width: 80% !important;
    display: block;
    margin: auto;
  }

  .sign-up-page .menu-btn img {
    width: 50px;
  }

  .sign-up-form>div:first-child {
    padding: 11vw 8vw;
  }

  .sign-up-form h1 {
    max-width: 100%;
  }

  .sign-up-form form {
    max-width: 90%;
  }

  .sign-up-form form>div:nth-child(2) {
    gap: 5px !important;
  }

  .sign-up-form form>div:nth-child(4) {
    gap: 5px !important;
  }

  .sign-up-form form>div:nth-child(7) {
    padding: 5px !important;
    gap: 5px !important;
  }

}

@media (max-width: 480px) {

  .sign-up-page {
    padding: 50px 0px;
  }

  .sign-up-form>div:first-child {
    padding: 7vw 5vw;
  }

  .sign-up-page .menu-btn {
    top: 0%;
    transform: translate(-50%, -48px) rotate(90deg);
    left: 50%;
  }

  .sign-up-form form {
    margin: 0%;
    max-width: 100%;
  }

  .sign-up-form h1 {
    font-size: 26px;
  }


}