﻿body {
  background: #f9f9f9;
  padding: 0px;
  margin: 0px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.04em;
}

.backgound-dash {
  background: #f4f9f9;
  background: #f4f9f9;
}

html {
  scroll-behavior: smooth;
}

/* DM Sans Ã¢â‚¬â€ variable font (supports weight 100..1000) self-hosted from /public/assets/fonts.
   Two unicode-range slices keep payload small while still covering latin + latin-ext. */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular-Ext.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic-Ext.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* DM Serif Display kept for marketing/display copy that explicitly opts in via var(--font-serif). */
@font-face {
  font-family: "DM Serif Display";
  src:
    url("../fonts/DMSerifDisplay-Italic.woff2") format("woff2"),
    url("../fonts/DMSerifDisplay-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src:
    url("../fonts/DMSerifDisplay-Regular.woff2") format("woff2"),
    url("../fonts/DMSerifDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(73 150 156 / 25%);
  border: solid 1px #49969c;
}

label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgb(73 150 156 / 25%);
}

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

header .header .menu ul.site_menu {
  display: flex;
  gap: 0px;
  margin: 0px;
}

header .header .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
}

header .header .menu ul.site_menu li {
  list-style: none;
  padding: 0px 25px;
}

header .header .menu ul.site_menu li a {
  color: #000000;
  font-size: 15px;
  line-height: 21px;
  text-decoration: none;
  transition: 0.2s ease-in all;
  list-style: none;
}

header {
  width: 100%;
  padding: 0px;
  /* position: fixed;
  top: 0px;
  z-index: 999; */
}

header .container {
  background: url(../img/Header-bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 10px 80px 10px;
  height: 130px;
  transition: 0.5s;
  z-index: 9999;
}

header.header-main.scrolled .container {
  position: fixed;
  width: 100%;
  max-width: 100%;
  background: #fff;
  height: auto;
  box-shadow: 0px 2px 7px 0px #49969c38;
  animation: header-slide-down 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* header.sticky {
  background: #1b1b3f;
  width: 100%;
  padding: 7px 0px;
  position: fixed;
  top: 0px;
  z-index: 99;
} */

header .header .menu ul.site_menu li a:hover {
  color: #49969c;
}

header .header .menu ul.site_menu li a {
  position: relative;
  text-decoration: none;
}

/* line */

/* hover effect */
header .header .menu ul.site_menu li a:not(.active):hover::after {
  width: 100%;
}

header .header .menu .buttons button#Register {
  background: transparent;
  border: 1px solid #fff;
}

header .header .menu .buttons {
  display: flex;
  gap: 8px;
}

header .header .menu .buttons button:hover {
  transform: inherit;
  transition: 0.3s ease-in all;
  background-color: #f0f6ff;
  color: #108de3;
  color: #fff;
  transform: scale(1.05);
}

header .header .menu .buttons button.active {
  transition: 0.3s ease-in all;
}

.buttons button {
  background: #49969c;
  border-radius: 36px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 35px;
  border: none;
  transition: 0.3s ease-in all;
}

.buttons .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 17px;
  width: 12px;
  height: 12px;
  background-color: rgb(255 255 255);
  transform: rotate(45deg);
  border-radius: 1px;
}

.buttons button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969c !important;
}

.buttons button.active {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
}

.buttons a.dropdown-item {
  font-size: 14px;
  padding: 7px 10px;
}

.slider {
  background: url(/assets/img/slider.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 930px;
  display: flex;
  align-items: center;
  margin-top: 0px;
  position: relative;
}

.slider .row {
  align-items: center;
}

.surgmatch-content h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 76px;
  color: #fff;
  text-align: center;
  margin-bottom: 33px;
}

.surgmatch-content h1 span {
  color: #49969c;
  font-size: 72px;
  padding-bottom: 0px;
}

.surgmatch-content {
  max-width: 1000px;
}

.surgmatch-content span {
  text-align: center;
  display: block;
  color: #fff;
  padding-bottom: 33px;
  font-size: 20px;
}

.surgmatch-content h6 {
  padding: 15px 0px;
  color: #108de3;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

.surgmatch-content p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}

.findmatch-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: center;
}

.findmatch-btn button {
  background: #49969c;
  border-radius: 36px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 12px 16px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
}

.findmatch-btn button:hover {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.surgmatch-content-tt img {
  max-width: 80%;
  animation: bounce 2s infinite ease-in-out;
}

.surgmatch-content-tt {
  display: flex;
  justify-content: end;
}

.how {
  background: #f8f8f8;
  padding: 70px 0px;
}

.howtosurg-works {
  text-align: center;
}

.howtosurg-works p {
  max-width: 900px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.howtosurg-works h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 76px;
  color: #262f40;
  margin-bottom: 12px;
}

.howtosurg-works h2 span {
  color: #49969c;
}

.howtosurg-works p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 47px;
}

.share-needsbox {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.share-needsbox {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 9;
  height: 100%;
}

.needs-guide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  position: relative;
  width: 200px;
}

.needs-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    #f5f5f5 0%,
    #e6e6e640 60%,
    #dcdcdc00 100%
  );
  z-index: -1;
  width: 100%;
  height: 130px;
  border-radius: 100px 100px 0px 0px;
  top: 31px;
}

.needs-guide img {
  max-height: 83px;
  min-height: 83px;
}

.needs-guide span {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  top: -13px;
  right: -16px;
}

.share-needsbox h6 {
  color: #262f40;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 24px 0px;
  margin-bottom: 0px;
}

.share-needsbox p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.infrom-empowred h6 {
  color: #108de3;
  font-size: 20px;
  font-weight: 300;
  line-height: 100%;
  padding-top: 103px;
  text-align: center;
}

.how .row {
  position: relative;
}

.whysurgmatch-better {
  position: relative;
}

.whysurgmatch-better span {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  color: #49969c;
  font-weight: 300;
  letter-spacing: 0;
}

.whyai {
  padding: 80px 0px;
  background: #fff;
}

.whyai {
  position: relative;
}

.whyai::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/why-surgmatch-better.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
  left: 0px;
  background-position: right;
}

.surgmatch-care-journey h2 {
  font-size: 45px;
  font-weight: 300;
  line-height: 47px;
  color: #262f40;
  margin-bottom: 50px;
  padding-top: 20px;
}

.surgmatch-expert {
  display: flex;
  align-items: self-start;
  column-gap: 40px;
}

.surgmatch-experince p {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #525252;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 19px;
}

.surgmatch-experince p img {
  max-width: 14px;
}

.surgmatch-experince p i {
  color: #e65a5a;
  font-size: 14px;
}

.surgmatch-experince h6 {
  color: #262f40;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.surgmatch-care-journey h2 span {
  color: #49969c;
}

.Decision-support {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 7px 0px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
  z-index: 9;
  height: 100%;
}

.ai-translate {
  width: 75px;
  height: 75px;
  background: #cfecff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.Decision-support h6 {
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.Decision-support p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.result {
  background: #f8f8f8;
  padding: 80px 0px;
}

.data-point h2 {
  font-size: 47px;
  font-weight: 300;
  line-height: 47px;
  color: #262f40;
  margin-bottom: 47px;
  text-align: start;
}

.data-point h2 span {
  color: #49969c;
}

.data-point p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 60px;
}

.data-point {
  text-align: center;
}

.precision-matching {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border: solid 1px rgba(16, 141, 227, 1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.precision-matching h2 {
  color: rgba(16, 141, 227, 1);
  font-weight: 800;
  font-size: 70px;
  line-height: 100%;
}

.precision-matching h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  padding: 10px 0px;
  margin-bottom: 0px;
}

.precision-matching p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 0px 0px;
  margin-bottom: 0px;
}

.journey {
  padding: 90px 0px;
  background: linear-gradient(
    90deg,
    #243b6b 0%,
    #1a2f5a 25%,
    #0b2344 50%,
    #031a33 75%,
    #001126 100%
  );
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 255px;
  height: 430px;
  background: url(../img/navigate-bg.svg) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.journey-madeclear span {
  background: rgb(73 150 156 / 48%);
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
  border: solid 1px #49969c;
  padding: 7px 18px;
}

.journey .row {
  align-items: center;
}

.complete-transparncey {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 30px;
}

.complete-transparncey .complete-transparncey-content {
  width: 85%;
}

.search-check {
  width: 75px;
  height: 75px;
  background: #cfecff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.complete-transparncey-content h6 {
  color: rgba(38, 47, 64, 1);
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 8px;
}

.complete-transparncey-content p {
  color: rgba(67, 67, 67, 1);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0px;
}

.journey-madeclear .right-surgmatch p {
  display: flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 18px;
}

.journey-madeclear .right-surgmatch p img {
  max-width: 22px;
}

.journey-madeclear h2 {
  font-size: 45px;
  font-weight: 300;
  line-height: 47px;
  color: #fff;
  margin: 30px 0px;
}

.journey-madeclear h2 span {
  color: rgba(16, 141, 227, 1);
}

.madeclaer-img {
  position: relative;
}

.madeclaer-img {
  position: relative;
  left: 60px;
}

.trust-matching {
  position: absolute;
  left: -20px;
}

.trust-matching img {
  transform: rotate(0deg);
}

.matched-partner {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  top: 127px;
  z-index: 999;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  left: -50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  animation: bounce 2s infinite ease-in-out;
}

.supported-partner {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  bottom: 9px;
  z-index: 999;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  left: -66px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  animation: bounce 2s infinite ease-in-out;
}

.matched-partner h6 {
  color: rgba(16, 141, 227, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0px;
}

.supported-partner h6 {
  color: rgba(16, 141, 227, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0px;
}

.Confident-partner {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  bottom: 136px;
  z-index: 999;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  right: 115px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  animation: bounce 2s infinite ease-in-out;
}

.Confident-partner h6 {
  color: rgba(16, 141, 227, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0px;
}

.Trust-partner {
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  top: 53px;
  z-index: 999;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  right: 137px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  animation: bounce 2s infinite ease-in-out;
}

.Trust-partner h6 {
  color: rgba(16, 141, 227, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0px;
}

.smarter-way {
  background: url(/assets/img/smarter-way.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
}

.navigate-surgical {
  text-align: center;
}

.navigate-surgical h2 {
  color: rgba(38, 47, 64, 1);
  font-size: 56px;
  font-weight: 300;
  line-height: 130%;
  margin-bottom: 12px;
}

.navigate-surgical h2 span {
  color: rgba(16, 141, 227, 1);
}

.navigate-surgical p {
  color: rgba(67, 67, 67, 1);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0px;
  padding: 12px 0px 34px;
}

.navigate-surgical .findmatch-btn {
  justify-content: center;
}

.footer {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(73, 150, 156, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #082030 0%, #0d2e43 100%);
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/footer-bg.png) no-repeat center;
  background-size: contain;
  opacity: 1;
  height: 100%;
  width: 100%;
  background-position: left;
  pointer-events: none;
}

.f-menu {
  display: flex;
  column-gap: 80px;
  justify-content: space-between;
}

.sub-menu h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 24px;
}

.sub-menu ul {
  padding: 0px;
  margin: 0px;
}

.sub-menu ul li {
  list-style: none;
}

.sub-menu ul li a {
  text-decoration: none;
  padding: 6px 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  display: block;
  transition: 0.3s ease-in all;
}

.sub-menu ul li a:hover,
.sub-menu ul li a.active {
  color: #49969c;
}

.sub-menu ul li a:hover {
  transition: 0.3s ease-in all;
  transform: translateX(5px);
}

.stay-date h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 24px;
}

.stay-date input {
  background: rgba(255, 255, 255, 20%);
  border-radius: 8px;
  padding: 5px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px;
}

.stay-date input:focus {
  background: rgba(255, 255, 255, 20%);
  border-radius: 8px;
}

.stay-date input::placeholder {
  color: rgba(217, 219, 225, 1);
}

.stay-date .form-control:focus {
  color: rgba(217, 219, 225, 1);
}

.stay-date-prt {
  position: relative;
}

.stay-date span {
  position: absolute;
  right: 13px;
  top: 8px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.footer-btm {
  background: #04131d;
  border-top: solid 1px #2a3c5d;
  padding: 19px 0px;
}

.footer-btm p {
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.social-media {
  margin-top: 22px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-left: 0px;
}

.social-media a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 10%);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease-in all;
}

.social-media a:hover {
  background: #49969c;
}

.logo h1 {
  margin-bottom: 0px;
}

.bottom-arrow {
  position: absolute;
  right: 50%;
  bottom: 60px;
  animation: arrowFloat 1.8s infinite ease-in-out;
}

@keyframes arrowFloat {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -12px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }
}

header .header .menu ul.site_menu li a.active {
  border-bottom: solid 2px #49969c;
  color: #49969c;
}

.login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 87%);
  z-index: 1;
}

.login > * {
  position: relative;
  z-index: 2;
}

.login-logo {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  cursor: pointer;
}

.login-logo img {
  width: 200px;
}

.login-box h2 {
  text-align: left;
  color: #49969c;
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 30px;
}

.login-box label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
}

.login-box p {
  color: #525252;
  font-size: 14px;
  margin-bottom: 0px;
  padding: 10px 0px;
  text-align: left;
}

.patient-content p {
  padding: 0px 0px;
}

.login-logo {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 999;
}

.login-box label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.login-box input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 12px;
}

.login-box input:focus {
  background: #ffffff;
  border: solid 1px #49969cba;
}

.login-box input::placeholder {
  color: #525252;
}

.login-box input[type="checkbox"] {
  accent-color: #49969c;
  cursor: pointer;
}

.login-box button {
  background: #49969c;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: none;
  transition: 0.3s ease-in all;
  width: 100%;
  margin: 7px 0px;
  cursor: pointer;
}

.login-box button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969c;
}

.login-box a {
  color: #49969c;
  font-size: 13px;
}

.signup-doctor a {
  font-size: 13px;
  font-weight: 300;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #49969c;
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.login-box a i {
  color: #49969c;
  font-size: 14px;
}

.login-box select {
  background: #fff;
  border-radius: 10px;
  padding: 9px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.login-box select:focus {
  background: #fff;
  border: solid 1px #49969c;
}

.login-box select::after {
  filter: invert(1);
  background: url("/assets/img/from-arrow.svg") no-repeat center center;
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("/assets/img/form-arrow.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  filter: invert(1000);
  opacity: 0.6;
}

.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;
}

.submit button {
  display: block;
  width: auto;
}

.symptoms {
  background: linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  background-size: cover;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  margin-top: 0px;
  padding: 113px 0px 60px;
}

.symptoms::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1) 80%
  );
}

.symptoms .dg-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, #00000000 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 100%);
  /* -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%); */
  pointer-events: none;
}

.sysmt-img {
  /* background: no-repeat bottom center, linear-gradient(180deg, #d3ededd6, #a7dfdfc4); */
  background-size:
    100% auto,
    cover;
  backdrop-filter: blur(40px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(73, 150, 156, 0.15);
  padding: 21px 25px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  /* background: rgb(53 144 155 / 90%); */
  /* background: linear-gradient(120deg, #2f8f9da8 0%, #3fa9a2c7 55%, #5bbfb6ba 100%); */
  /* background: linear-gradient(135deg, #5fbdbede 0%, #71c7c7d1 45%, #8dd8d6d6 100%); */
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(73, 150, 156, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #082030 0%, #0d2e43 100%);
}

/* Dots Grid in Top Right via CSS pseudo-element */
.sysmt-img::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-image: radial-gradient(#35909b 25%, transparent 25%);
  background-size: 10px 10px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* Concentric Radar Rings Background via CSS pseudo-element */
.sysmt-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle at 50% 45%,
    transparent 0,
    transparent 70px,
    rgba(255, 255, 255, 0.28) 70px,
    rgba(255, 255, 255, 0.28) 71.5px,
    transparent 71.5px,
    transparent 130px,
    rgba(255, 255, 255, 0.28) 130px,
    rgba(255, 255, 255, 0.28) 131.5px,
    transparent 131.5px,
    transparent 190px,
    rgba(255, 255, 255, 0.22) 190px,
    rgba(255, 255, 255, 0.22) 191.5px,
    transparent 191.5px,
    transparent 250px,
    rgba(255, 255, 255, 0.15) 250px,
    rgba(255, 255, 255, 0.15) 251.5px,
    transparent 251.5px
  );
  transform-origin: 50% 45%;
  animation: radar-pulse-bg 6s ease-in-out infinite;
  opacity: 0.2 !important;
}

@keyframes radar-pulse-bg {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.gr-border {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.4)
  );
  padding: 1px;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(73, 150, 156, 0.1);
}

.sysmt-content h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  color: #1a3c48;
  margin-bottom: 0px;
}

.sysmt-content h2 span {
  color: #35909b;
}

.sysmt-content h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a3c48;
  margin-bottom: 0px;
  padding: 6px 0px 4px;
}

.sysmt-content p {
  color: #4b6b77;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 12px;
}

.where-begin p {
  color: #4b6b77;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 91px 55px 0px;
  text-align: center;
  position: relative;
}

.your-option-list {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #eef2f2;
  box-shadow:
    0 10px 20px rgba(73, 150, 156, 0.03),
    0 2px 4px rgba(73, 150, 156, 0.02);
}

.your-option-list:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(53, 144, 155, 0.08);
  border-color: rgba(53, 144, 155, 0.2);
}

.your-option-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #7ad3d8, #35909b);
  transition: width 0.3s ease;
}

.your-option-list:hover::before {
  width: 4px;
}

.start-body {
  display: flex;
  align-items: center;
  column-gap: 18px;
}

.body-icon {
  background: #e6f6f6;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.body-icon img {
  width: 30px;
  height: 30px;
  filter: invert(46%) sepia(85%) saturate(356%) hue-rotate(139deg)
    brightness(91%) contrast(89%);
}

.sysmt-content {
  position: relative;
  padding-right: 6%;
}

.start-body .body-content h6 {
  padding: 0px;
  font-weight: 600;
  font-size: 16px;
  color: #1a3c48;
  margin-bottom: 4px;
}

.start-body .body-content p {
  color: #64748b;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 0px;
  letter-spacing: 0px;
}

/* .body-content {
  width: calc(100% - 100px);
} */

.arrow-assestment {
  display: none;
}

.sysmt-content h3 {
  color: #35909b;
  text-align: center;
  padding-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.sysmt-img {
  position: relative;
}

.sysmt-img span {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #e6f6f6;
  border: 1px solid rgba(73, 150, 156, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  /* box-shadow: 0 6px 16px rgba(14, 74, 90, 0.1); */
}

.sysmt-img span:hover {
  background: #f4fbfb;
  border-color: rgba(73, 150, 156, 0.4);
  box-shadow: 0 8px 20px rgba(14, 74, 90, 0.15);
  transform: scale(1.05);
}

.sysmt-img span img {
  width: 20px !important;
  height: 25px !important;
  display: inline-block !important;
  transition: transform 0.4s ease;
  filter: invert(46%) sepia(85%) saturate(356%) hue-rotate(139deg)
    brightness(91%) contrast(89%) !important;
}

.sysmt-img span:hover img {
  transform: rotate(180deg);
}

.sysmt-img img {
  transition: opacity 0.3s ease;
}

/* Clean CSS Chevron Arrow for Options List */
/* .your-option-list::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border: none !important;
  border-top: 1.5px solid #35909b !important;
  border-right: 1.5px solid #35909b !important;
  transition: all 0.3s ease;
  pointer-events: none;
} */

.your-option-list:hover::after {
  right: 16px;
  border-color: #277985 !important;
}

/* ===============================
   FORCE CLICKABLE BODY OVERLAY
================================ */

/* parents must allow overlays */
.gr-border,
.sysmt-img {
  position: relative;
  overflow: visible !important;
}

/* image should NEVER block clicks */
.sysmt-img img {
  pointer-events: none;
  display: block;
  width: 100%;
}

/* invisible overlay to normalize click layer */
.body-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* body hotspot wrapper */
.body-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.3s ease;
}

/* Soft glowing aura ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â only on hover, no harsh outline */
.body-hotspot.is-active {
  background: radial-gradient(
    circle,
    rgba(47, 143, 157, 0.28) 0%,
    rgba(189, 230, 226, 0.18) 45%,
    transparent 75%
  );
}

/* Pulsing center dot ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â appears on hover */
.body-hotspot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #2f8f9d, #277985);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 2px 8px rgba(14, 74, 90, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.body-hotspot.is-active::before {
  transform: translate(-50%, -50%) scale(1);
  animation: hotspot-dot-pulse 2s ease-in-out infinite;
}

/* Expanding ripple ring ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â animated on hover */
.body-hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #49969c;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.body-hotspot.is-active::after {
  animation: hotspot-ripple 1.8s ease-out infinite;
}

@keyframes hotspot-dot-pulse {
  0%,
  100% {
    box-shadow:
      0 2px 8px rgba(14, 74, 90, 0.35),
      0 0 0 0 rgba(47, 143, 157, 0.55);
  }

  50% {
    box-shadow:
      0 2px 8px rgba(14, 74, 90, 0.35),
      0 0 0 6px rgba(47, 143, 157, 0);
  }
}

@keyframes hotspot-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¥ BIG CLICK AREA (KEY FIX) */
.hotspot-click-area {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/* popup bubble */
.hotspot-label {
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 11px 18px 12px 22px;
  white-space: nowrap;
  z-index: 20;
  box-shadow:
    0 12px 32px rgba(14, 74, 90, 0.25),
    0 0 0 1px rgba(47, 143, 157, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  animation: hotspot-fade-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Floating gradient orb ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â top-left corner */
.hotspot-label::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #2f8f9d, #bde6e2);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 4px 12px rgba(47, 143, 157, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/* Connection line dropping down to the body part */
.hotspot-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 18px;
  background: linear-gradient(180deg, #2f8f9d 0%, rgba(47, 143, 157, 0) 100%);
}

.hotspot-label strong {
  display: block;
  font-size: 14px;
  font-weight: 300;
  background: linear-gradient(135deg, #0e4a5a, #2f8f9d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.hotspot-label small {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 300;
  color: #ffffff;
  background: linear-gradient(135deg, #2f8f9d, #4ba8b6);
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(47, 143, 157, 0.28);
}

@keyframes hotspot-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.buttons {
  position: relative;
}

.buttons .dropdown-menu {
  position: absolute;
  top: 23% !important;
  right: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.buttons .dropdown-item button {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease-in all;
}

.buttons .dropdown-item:hover {
  background: #108de3;
  transition: 0.3s ease-in all;
  color: #fff;
}

.upload-id {
  width: 100%;
  max-width: 320px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #49969c0d;
  padding: 15px;
  font-size: 14px;
  color: #525252;
  font-weight: 500;
  max-width: 100%;
}

.upload-id:hover {
  border-color: #49969c91;
  background: #49969c14;
}

.upload-id p {
  margin-top: 8px;
  font-size: 14px;
  color: #2f80ed;
}

.upload-id img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.upload-icon {
  font-size: 32px;
  color: #2f80ed;
  font-weight: bold;
}

.upload-doc img {
  width: 25px;
  height: 25px;
  filter: invert(1) brightness(2);
  object-fit: inherit;
  border-radius: 0px;
}

.upload-doc {
  margin: 0px 0px 6px;
  background: #49969c;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyefiled {
  position: relative;
}

.eyefiled span {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  align-content: center;
  color: #262e40;
  font-size: 14px;
}

.buttons .user-profile {
  background: #64a6aba1;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 5px 6px;
  border: none;
  transition: 0.3s ease-in all;
}

.profile-dropdown {
  position: absolute;
  right: -20px;
  top: 50px;
  background: #fff;
  /* border-radius: 8px; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); */
  /* min-width: 150px; */
  /* overflow: hidden; */
  z-index: 1000;
  padding: 9px 0px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  min-width: 220px;
  border: solid 1px rgb(204 204 204 / 55%);
}

.profile-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 32px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.profile-dropdown button {
  width: 100%;
  padding: 8px 14px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #212529;
  border-radius: 0px;
  margin: 2px 0px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.profile-dropdown button:hover {
  background-color: #49969c5c !important;
  color: #49969c !important;
  transform: inherit !important;
}

.eyefiled span#toggle i {
  font-size: 13px;
}

.forgotlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0px;
}

.checkforgot {
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding: 5px 0px;
}

.checkforgot input {
  width: 15px;
  height: 15px;
}

.registerinputlabel {
  margin-bottom: 10px;
}

.faq {
  padding: 80px 0px;
}

.help-center-content h1 {
  text-align: start;
  font-size: 40px;
  font-weight: 300;
  line-height: 76px;
  color: #262f40;
}

.help-center-content h6 {
  text-align: center;
  color: #108de3;
  font-size: 25px;
  font-weight: 500;
}

.help-center-content {
  padding: 40px 0px;
}

.questions-card {
  background: #fff;
  box-shadow: 0px 2px 7px 0px #0000001a;
  padding: 20px 30px;
  border-radius: 10px;
  border: solid 1px #e2e8ee;
  margin-top: 67px;
}

.help-center-content p {
  padding: 15px 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.getting-started h2 {
  color: #49969c;
  font-size: 21px;
  font-weight: 500;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 0px;
}

.questions-card .accordion-body {
  font-size: 14px;
  color: #525252;
  font-weight: 400;
}

.questions-card .accordion-button:not(.collapsed) {
  background: #49969c47;
}

.questions-card .accordion-item h2 button {
  font-size: 16px;
  line-height: 100%;
  color: #262f40;
  margin-bottom: 0px;
  font-weight: 300;
}

.questions-card .accordion-button:focus {
  box-shadow: 0 0 0.25rem rgb(204 226 227) !important;
}

.getting-started span {
  background: #49969c47;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 16px;
  color: #49969c;
}

.legal-ploicy-servi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 27px;
}

.legal-ploicy-servi h6 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 0px;
  position: relative;
  z-index: 99;
}

.contact .legal-ploicy-servi p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
  text-align: center;
  z-index: 99;
  position: relative;
}

.contact .contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(73, 150, 156, 0.12),
    rgba(73, 150, 156, 0.04)
  );
  border: 1px solid rgba(73, 150, 156, 0.28);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  margin-bottom: 22px;
  color: inherit;
  width: 100%;
}

.contact .contact-info-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(73, 150, 156, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #49969c;
  font-size: 20px;
}

.contact .contact-info-card-value {
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
  word-break: break-word;
  line-height: 1.35;
}

.contact .contact-info-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.contact .contact-info-illustration {
  margin-top: 28px;
  padding: 8px 4px 4px;
  display: flex;
  pointer-events: none;
}

.contact .contact-info-illustration svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  overflow: visible;
}

.contact .contact-info-illustration .cti-bubble {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-float 5.2s ease-in-out infinite;
  will-change: transform;
}

.contact .contact-info-illustration .cti-bubble-1 {
  animation-duration: 5.4s;
  animation-delay: 0s;
}

.contact .contact-info-illustration .cti-bubble-2 {
  animation-duration: 6s;
  animation-delay: 0.7s;
}

.contact .contact-info-illustration .cti-bubble-3 {
  animation-duration: 4.8s;
  animation-delay: 1.4s;
}

.contact .contact-info-illustration .cti-typing circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-dot 1.2s ease-in-out infinite;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(1) {
  animation-delay: 0s;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(2) {
  animation-delay: 0.18s;
}

.contact .contact-info-illustration .cti-typing circle:nth-child(3) {
  animation-delay: 0.36s;
}

.contact .contact-info-illustration .cti-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: cti-twinkle 3.4s ease-in-out infinite;
}

.contact .contact-info-illustration .cti-spark-2 {
  animation-delay: 0.8s;
  animation-duration: 4s;
}

.contact .contact-info-illustration .cti-spark-3 {
  animation-delay: 1.6s;
  animation-duration: 4.6s;
}

@keyframes cti-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes cti-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes cti-twinkle {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact .contact-info-illustration .cti-bubble,
  .contact .contact-info-illustration .cti-typing circle,
  .contact .contact-info-illustration .cti-spark {
    animation: none;
  }
}

.contact .contact-info-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  font-weight: 500;
}

section.policy {
  padding: 70px 0px;
}

.legeal-service h6 {
  color: #262f40;
  font-size: 23px;
  margin-bottom: 0px;
  padding: 23px 0 8px;
  font-weight: 300;
}

.legeal-service p {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  margin-bottom: 0px;
  position: relative;
  padding-left: 24px;
  padding-top: 9px;
}

.legeal-service p::after {
  position: absolute;
  content: "";
  background: #49969c;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  left: 8px;
  top: 17px;
}

table.history-table .status-badge:after {
  display: none;
}

table.history-table .status-badge {
  padding: 3px 24px;
  text-align: center;
  width: auto;
}

.legeal-service ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.legeal-service ul li {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  padding: 5px 0 5px 24px;
  position: relative;
}

.legeal-service ul li::before {
  position: absolute;
  content: "";
  background: #49969c;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  left: 8px;
  top: 14px;
}

.welcome-surgmatch ul {
  padding: 0px;
  margin: 0px 58px;
}

.welcome-surgmatch ul li {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  padding: 3px 0px;
}

.legeal-service span {
  color: #262f40;
  font-size: 15px;
  margin: 14px 0 4px;
  padding: 0;
  font-weight: 600;
  display: block;
  letter-spacing: 0.1px;
}

section.policy .legal-ploicy-servi {
  margin: 0;
  padding: 35px 0px 0px;
  flex-direction: column;
  /* background: #108de330 url(/assets/img/slider.png) no-repeat; */
  background-position: center;
  margin-top: 35px;
}

section.contact .legal-ploicy-servi {
  margin: 0;
  padding: 70px 0px 70px;
  height: 450px;
  flex-direction: column;
  background: #108de330 url(/assets/img/contact-banner.jpg) no-repeat;
  background-position: center;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.contact .legal-ploicy-servi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url(/assets/img/surgmatch_contact_banner-after.png) center/cover no-repeat,
    linear-gradient(
      to right,
      rgba(10, 25, 60, 0.9) 0%,
      rgba(10, 25, 60, 0.75) 30%,
      rgba(10, 25, 60, 0.4) 55%,
      rgba(10, 25, 60, 0) 75%
    ),
    linear-gradient(
      to right,
      rgba(29, 45, 83, 0.6) 0%,
      rgba(29, 45, 83, 0.3) 50%,
      rgba(29, 45, 83, 0.6) 100%
    );
  z-index: 2;
  pointer-events: none;
}

section.faq .legal-ploicy-servi {
  margin: 0;
  flex-direction: column;
  /* background: #108de330 url(/assets/img/slider.png) no-repeat; */
  background-position: center;
  margin-top: 50px;
}

.policy .legal-ploicy-servi h6 {
  color: #49969c;
}

.policy .legal-ploicy-servi p {
  color: #525252;
  margin-bottom: 0px;
  padding: 9px 0px;
}

.legeal-service {
  padding: 35px 0px;
}

.legeal-service h6 + ul,
.legeal-service h6 + span,
.legeal-service h6 + p {
  margin-top: 6px;
}

.legeal-service h6 strong {
  font-weight: 600;
  color: #49969c;
  margin-right: 4px;
}

.welcome-surgmatch p {
  margin-bottom: 0px;
  font-size: 16px;
  color: #262f40;
  font-weight: 400;
  padding: 5px 0px;
}

.welcome-surgmatch p::after {
  display: none;
}

.faq .legal-ploicy-servi h6 {
  color: #49969c;
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 0px;
}

.faq .legal-ploicy-servi p {
  color: #525252;
  margin-bottom: 0px;
  padding: 9px 0px;
}

.welcome-surgmatch p {
  padding-left: 44px;
}

.questions-card .accordion-item {
  border-color: #cce2e3;
}

.coming-soon {
  padding: 120px 0;
}

.coming-soon h1 {
  font-size: 42px;
  font-weight: 300;
}

.coming-soon p {
  font-size: 18px;
  color: #108de3;
}

.coming-soon small {
  color: #777;
}

.checkforgot label {
  margin-bottom: 0px !important;
  display: flex;
  align-items: center;
}

.registerinputlabel {
  color: #d85252;
  width: 100%;
}

main {
  min-height: calc(100vh - 359px);
}

.profile {
  padding: 75px 0px;
}

section.profile .legal-ploicy-servi {
  margin: 0;
  padding: 70px;
  flex-direction: column;
  background: #108de330 url(/assets/img/slider.png) no-repeat;
  background-position: center;
}

.profile-user {
  padding: 0px 0px 0px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 7px 0px;
  background: rgb(255, 255, 255);
  margin-top: 63px;
  /* border-bottom: solid 3px #21adee; */
}

.profile-user .nav-pills li button {
  color: #108de3;
  font-size: 16px;
  transition: 0.2s ease-in all;
  padding: 6px 23px;
  font-size: 16px;
  font-weight: 300;
}

.tabbbing-card .nav-pills {
  margin: 0px 0px;
  flex-direction: column;
  width: 100%;
  transition: 0.3s ease-in all;
}

.tabbbing-card .nav-pills li {
  width: 100%;
  padding: 5px 0px;
}

.tabbbing-card .nav-pills li button {
  width: 100%;
  color: #262f40;
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: start;
  border-radius: 0px;
  position: relative;
  font-size: 15px;
}

.tabbbing-card .nav-pills li button img {
  height: 20px;
  filter: invert(1);
}

.tabbbing-card .nav-pills li button span {
  display: inline-flex;
  width: 25px;
  justify-content: center;
  align-items: center;
}

.tabbbing-card .nav-pills li button span i {
  font-size: 21px;
}

.profile-user .tab-pane h2 {
  color: #262f40;
  font-size: 23px;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 100%;
  border-bottom: solid 1px #ddd;
  padding: 15px 20px;
}

.account-information {
  padding: 20px 20px 20px;
}

.account-information input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.account-information label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.account-information select {
  background: #fff;
  border-radius: 6px;
  padding: 9px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.account-information textarea {
  resize: inherit;
  font-size: 14px;
}

.account-information textarea:focus {
  background: #ffffff;
  border: solid 1px #49969c;
}

.savechnages {
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: end;
}

.savechnages button {
  background: #49969c;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 30px;
  border: none;
  transition: 0.3s ease-in all;
  margin: 7px 0px;
  cursor: pointer;
}

.savechnages button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969c;
}

button.cancel {
  border: solid 1px #49969c;
  background: none;
  color: #49969c;
}

button.cancel:hover {
  color: #fff;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #e5e7eb;
  border-radius: 0px;
  overflow: hidden;
}

.history-table thead {
  background-color: #f6f8fa;
}

.history-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
  border: 1px solid #94c1c5b3;
  padding: 10px 15px;
  font-weight: 300;
  white-space: nowrap;
}

.history-table td {
  padding: 12px;
  font-size: 14px;
  color: #525252;
  border: 1px solid #e5e7eb;
  vertical-align: middle;
  white-space: nowrap;
}

.history-table tbody tr:hover {
  background-color: #f9fafb;
}

.recommendation-text {
  color: #525252;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-badge {
  padding: 7px 27px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
}

.status-badge.completed {
  background-color: #10b981;
  color: #ffffff;
}

.status-badge.progress {
  background-color: #2563eb;
  color: #ffffff;
  height: auto;
  white-space: nowrap;
}

.view-action {
  color: #62a5aa;
  text-decoration: none;
  font-weight: 300;
  font-size: 12px;
  background: #49969c47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  padding: 3px 14px;
  text-transform: lowercase;
}

.view-action i {
  margin-right: 6px;
}

.view-action:hover {
  text-decoration: none;
}

.professoinal {
  background: #49969c3d;
  padding: 15px;
  border-radius: 5px;
  border: solid 1px #49969c6b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-plan h6 {
  color: #262f40;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 300;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.active-plan h6 span {
  background: #30a66f;
  border-radius: 20px;
  font-size: 12px;
  padding: 5px 14px;
  color: #fff;
}

.active-plan p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
}

.upgrade-plan button {
  background: #49969c;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 32px;
  border: none;
  transition: 0.3s ease-in all;
  margin: 7px 0px;
  cursor: pointer;
}

.upgrade-plan button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #108de3;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: #62a5aa;
}

.errorFocus {
  border-color: #df3851a3 !important;
  border: solid 1;
}

.history-wrapper h3 {
  color: #262f40;
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 100%;
  padding: 10px 0px;
}

.history-card {
  overflow: hidden;
  border: none;
  border-radius: 0px;
}

.help-center-contact {
  margin-top: 30px;
}

.help-center-contact ul {
  padding: 0px;
  margin: 0px 39px;
}

.help-center-contact ul li {
  font-size: 16px;
  color: #525252;
  font-weight: 400;
  padding: 5px 0px;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.help-center-contact .getting-started h2 {
  padding: 20px 0px 3px;
}

.user-profile-img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  margin: 0 auto;
  margin-bottom: 19px;
  position: relative;
  background: #1b1b3f2b;
  border-radius: 100%;
  margin-top: -50px;
  z-index: 9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #559da3b3;
  border: solid 3px rgb(255 255 255 / 79%);
}

.user-profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  border: solid 6px #64a6aba1;
}

.user-profile-img span {
  position: absolute;
  z-index: 9999;
  bottom: 0px;
  right: 0px;
  background: #49969c;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  border: solid 2px #ffff;
  cursor: pointer;
}

.informatin-bg {
  background: linear-gradient(
    135deg,
    #49969c 0%,
    #49969c 40%,
    #49969ccc 70%,
    #49969c 100%
  );
  height: 100px;
  padding: 0px -20px;
  margin: -20px;
}

.edit-name {
  position: relative;
}

span.pencel {
  position: absolute;
  top: 40px;
  right: 15px;
  font-size: 14px;
  color: #8f8f8f;
}

.edit-address {
  position: relative;
}

.edit-address span.pencel {
  position: absolute;
  top: 39px;
  right: 28px;
  font-size: 14px;
  color: #8f8f8f;
}

.tabbbing-card {
  padding: 20px 0px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 7px 0px;
  background: rgb(255, 255, 255);
  margin-top: 63px;
  border-bottom: solid 3px #49969c;
  transition: 0.3s ease-in all;
}

.tabbbing-card:hover {
  transform: translateY(-10px);
}

.tabbbing-card ul li button.active:after {
  position: absolute;
  content: "";
  background: url(../img/arrow-left.svg) no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  right: -10px;
  top: 30%;
}

.tabbbing-card .nav-link.active span img {
  filter: brightness(0) invert(1);
}

.pgn-button ul {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 17px;
}

.pgn-button ul li {
  list-style: none;
  margin: 0px 5px;
}

.pgn-button ul li button {
  border-radius: 5px;
  width: 35px;
  height: 35px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e3f0fd;
  font-size: 15px;
  color: #108de3;
  transition: 0.3s ease-in all;
}

.pgn-button ul li button:hover {
  background: #108de3;
  color: #fff;
}

.pgn-button ul li button.active {
  background: #108de3;
  color: #fff;
}

.health-care {
  padding-top: 50px;
  text-align: center;
}

.health-care h1 {
  font-size: 40px;
  font-weight: 300;
  line-height: 76px;
  color: #262f40;
  margin-bottom: 25px;
}

.service-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  border-bottom: solid 2px #49969c;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: auto;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.systom-content p {
  background: #1b1b3ff5;
  border-radius: 35px;
  color: #fff !important;
  font-size: 12px !important;
  display: inline-block;
  padding: 2px 13px;
  margin-bottom: 0px;
}

.systom-content h2 {
  color: #262f40;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  padding: 8px 0px;
  margin-bottom: 0px;
}

.service-card p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
  padding-top: 8px;
}

.icon-ismart {
  width: 60px;
  height: 60px;
  background: #49969c70;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.systom-icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.systom-content {
  padding-top: 12px;
}

.icon-ismart img {
  max-width: 35px;
  filter: invert(55%) sepia(20%) saturate(500%) hue-rotate(140deg)
    brightness(90%) contrast(90%);
}

.contact-from {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  border-bottom: solid 2px #49969c;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  height: 100%;
}

.contact-from:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.contact-from h2 {
  color: #262f40;
  font-size: 25px;
  font-weight: 300;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.contact-from iframe {
  width: 100%;
  height: 100%;
}

.body-icon i {
  font-size: 19px;
  color: #49969c;
}

.contact .start-body .body-content p {
  font-size: 14px;
}

.contact .your-option h2 {
  color: #262f40;
  font-size: 25px;
  font-weight: 300;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 15px;
}

.contact .your-option-list {
  border: solid 1px #49969c47;
  box-shadow: none;
  background: #fff;
  border-left: solid 2px #49969c !important;
}

.contact .start-body .body-content h6 {
  color: #49969c;
}

.contact .start-body .body-content p {
  color: #525252;
}

.contact .body-icon {
  filter: inherit;
}

.contact .health-care {
  padding-top: 20px;
  text-align: center;
}

.surg-dfty {
  margin: 47px 0px;
}

.doctor-slider {
  position: relative;
  background: linear-gradient(135deg, #367fc7, #2da2f7);
  color: #fff;
  overflow: hidden;
  height: 650px;
  position: relative;
  display: flex;
  align-items: center;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 120px;
}

.wave path {
  fill: #f5f7f8;
}

.doctor-content {
  position: relative;
  z-index: 9;
}

.doctor-content h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0px;
}

.doctor-content h1 span {
  color: #fff;
}

.doctor-content p {
  padding: 0px 0px;
  color: rgb(255 255 255 / 78%);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 20px 0px;
}

.profile .tabbbing-card h2 {
  font-size: 22px;
  padding-left: 28px;
  color: #49969c;
}

main {
  min-height: calc(100vh - 359px);
}

/* =====  sdgjdsfjhsdfjhf ========= */

.whyjoin-platfrom {
  background: #f5f7f8;
  padding: 60px 0px;
}

.howits-work {
  background: #fff;
  padding: 60px 0px;
  position: relative;
}

.howits-work .row {
  position: relative;
}

.howits-work .row:after {
  position: absolute;
  content: "";
  width: 95%;
  height: 1px;
  background: rgba(16, 141, 227, 50%);
  bottom: 66px;
  left: 29px;
  right: 0px;
}

.howits-work .needs-guide img {
  max-width: 34px;
}

.howits-work .needs-guide span {
  width: 25px;
  height: 25px;
  font-size: 17px;
}

.doctor-slider:after {
  position: absolute;
  content: "";
  width: 95%;
  height: 1px;
  background: url(../img/doctor-bg.svg);
  bottom: 66px;
  left: 29px;
  right: 0px;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.doctor-slider .row {
  align-items: center;
  position: relative;
  z-index: 99;
}

.doctor-profile-img {
  width: 500px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.doctor-profile-img {
  position: relative;
  z-index: 9;
}

.doctor-profile-img img {
  border-radius: 10px;
}

.doctor-profile-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(16 141 227 / 14%);
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  border-radius: 10px;
}

span.plus-doctr-new {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-block;
  animation: spin 5s linear infinite;
  opacity: 0.7;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

span.plus-doctr-new img {
  width: 35px;
}

span.plus-doctr {
  position: absolute;
  top: 4px;
  right: 10px;
  opacity: 0.7;
}

span.plus-doctr img {
  width: 45px;
}

.doctor-content .findmatch-btn button:hover {
  background: #1b1b3f;
  border-color: #fff;
}

.header-dashboard {
  background: #fff;
}

/* ===============  Doctor dashboard CSS Start Here ================================ */

.header-dashboard {
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 99;
  border-bottom: solid 1px #e5e7eb;
}

.d-logo {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.d-logo h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 0px;
}

.profile-dropdown-das .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/arrow-down.svg) no-repeat center;
  background-size: 9px;
  vertical-align: middle;
  border: none;
  pointer-events: none;
  filter: invert(0) brightness(0);
}

.profile-dropdown-das .dropdown-menu {
  position: relative;
}

.profile-dropdown-das .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 39px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.profile-dropdown-das .dropdown-menu li {
  position: relative;
  z-index: 9999;
}

.dropdown-item:focus,
.dropdown-item:focus {
  outline: none;
}

.profile-dropdown-das .profile-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  background: #fff;
  border: none !important;
  padding: 0px;
}

.logo img {
  height: 60px;
}

.profile-dropdown-das .profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 2px #18afea73;
  border-radius: 100%;
}

.profile-dropdown-das .profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-dropdown-das .profile-name {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 20px;
}

.profile-dropdown-das .profile-role {
  font-size: 12px;
  font-weight: 500;
  color: #77777f;
  text-transform: uppercase;
  line-height: 14px;
}

.profile-dropdown-das .dropdown-menu {
  border-radius: 6px;
  min-width: 200px;
  margin-top: 12px !important;
}

.profile-dropdown-das .dropdown-item:hover {
  background-color: #f5f5f5;
}

.profile-dropdown-das .profile-btn:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.profile-dropdown-das .btn.show,
.profile-dropdown-das .btn:active,
.profile-dropdown-das .btn:focus {
  border: none;
  box-shadow: none;
}

.profile-dropdown-das .dropdown-menu a {
  padding: 10px 15px;
  border-bottom: solid 1px #ddd;
  transition: 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 500;
  color: #77777f;
  line-height: 14px;
}

.profile-dropdown-das .dropdown-menu a:last-child {
  border-bottom: none;
}

.profile-dropdown-das .dropdown-menu a:hover {
  background: var(--blue);
  color: var(--white);
}

.dropdown.profile-dropdown-das {
  display: flex;
  justify-content: end;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 96%;
  width: 250px;
  padding: 0;
  background-color: #ffffff;
  transition: var(--tran-05);
  z-index: 100;
  margin: 20px;
  box-shadow: 0 0 40px #0000000d;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}

.sidebar.close {
  width: 80px;
}

/* ===== Reusable code - Here ===== */
.sidebar header {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: var(--tran-03);
}

.sidebar.close span.toggle span.two {
  right: auto;
  left: 0;
}

.sidebar .text {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: #636363;
  width: 100%;
  transition: 0.5s ease-in all;
  opacity: 1;
  visibility: visible;
}

.sidebar.close .text {
  opacity: 0;
  visibility: hidden;
  width: 1px;
  transition: 0.5s ease-in all;
}

/* =========================== */

.sidebar header {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 0px 0 15px;
  margin: 0 0 20px;
}

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

.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}

header .image-text .name {
  margin-top: 2px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.sidebar header .image {
  margin-right: 10px;
}

header .image-text .profession {
  font-size: 20px;
  margin-top: -10px;
  display: block;
  font-weight: 200;
  color: #fff;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 160px;
  border-radius: 0px;
}

span.toggle {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

span.toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #636363;
  border-radius: 5px;
  top: 0;
  right: 0;
}

span.toggle span.two {
  top: 8px;
  width: 80%;
}

span.toggle span.three {
  top: 16px;
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar .menu {
  margin-top: 10px;
}

.sidebar li.search-box {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  cursor: pointer;
  transition: var(--tran-05);
}

.sidebar li.search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--primary-color-light);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  transition: var(--tran-05);
}

.sidebar li a {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  transition: 0.3s ease-in all;
  gap: 0px;
  padding: 10px 15px;
}

.sidebar header {
  margin: 15px;
}

.sidebar .menu-bar .menu {
  padding: 0 15px;
}

.sidebar .menu-bar li.nav-link.Sign_Out {
  margin: 0px 15px;
  background: #49969c;
  padding: 0px;
}

.sidebar .menu-bar li.nav-link.Sign_Out a i {
  color: #fff;
}

.sidebar .menu-bar li.nav-link.Sign_Out a span.text {
  color: #fff;
}

.sidebar li a i {
  font-size: 18px;
  color: #636363;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
}

.sidebar li a:hover i {
  font-size: 18px;
  color: #fff;
}

.sidebar li.active a i {
  color: #fff;
}

.sidebar li a img {
  margin-right: 0px;
  width: 20px;
  filter: invert(45%) sepia(9%) saturate(906%) hue-rotate(179deg)
    brightness(89%) contrast(86%);
  transition: 0.3s;
}

.sidebar li.nav-link:hover a img,
.sidebar li.nav-link.active a img {
  filter: brightness(0) invert(1);
}

.sidebar li.active a .text {
  color: #108de3;
  font-weight: 500;
}

/* Remix-icon based nav items in the doctor sidebar (Notifications, FAQs, Privacy, Terms) */
.sidebar .menu-links li.nav-link a i.nav-icon-rmx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-size: 18px;
  color: #636363;
  transition: color 0.3s;
}

.sidebar .menu-links li.nav-link:hover a i.nav-icon-rmx,
.sidebar .menu-links li.nav-link.active a i.nav-icon-rmx {
  color: #fff;
}

/* Secondary support group (FAQs / Privacy Policy / Terms & Conditions) */
.sidebar .menu .menu-links.menu-links--secondary {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e6ebef;
}

/* Doctor topbar notification bell */
.site_header .header-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f7fa;
  color: #525252;
  text-decoration: none;
  transition: all 0.2s ease;
}

.site_header .header-bell:hover {
  background: #e8f7f6;
  color: #49969c;
}

.site_header .header-bell i {
  font-size: 18px;
}

.site_header .header-bell__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff5b6c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.sidebar.close ~ .Right_part {
  left: 76px;
  height: 100vh;
  width: calc(100% - 96px);
}

.sidebar .menu ul.menu-links {
  padding: 0;
  margin: 0;
}

.sidebar.close header .image-text span.image {
  opacity: 1;
  visibility: visible;
  min-width: 0;
  width: auto;
  margin: 0 6px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar.close header .image-text span.image img {
  width: 36px;
  height: auto;
  max-width: 26px;
}

.sidebar.close header .image-text {
  justify-content: center;
  gap: 4px;
}

.sidebar li.nav-link {
  padding: 0;
  margin: 0 0 5px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
}

.sidebar li.nav-link:hover {
  background: #49969c;
  color: #fff;
}

.sidebar li.nav-link:hover span {
  color: #fff;
}

.sidebar li.nav-link:hover svg {
  color: #fff;
}

.sidebar .text {
  font-size: 14px;
  margin-left: 10px;
  width: calc(22px - 100%);
}

.sidebar {
  width: 250px;
}

.sidebar .menu ul.menu-links li svg {
  color: #a8b0bc;
  height: 22px;
  width: 22px;
}

.Right_part {
  position: absolute;
  top: 0;
  top: 0;
  left: 270px;
  width: calc(100% - 290px);
  transition: var(--tran-05);
  padding: 0px 20px 0px 10px;
  margin: 20px;
  min-height: 95vh;
  max-height: 95vh;
  overflow: auto;
  transition: 0.5s;
  background: #f4f9f9;
}

.Right_part .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close ~ .Right_part {
  left: 100px;
  height: 100vh;
  width: calc(100% - 120px);
}

.Right_part .main {
  min-height: calc(100vh - 228px);
  margin-right: 0px;
  padding: 0px 0 0;
  margin-top: 24px;
}

.Right_part {
  left: 260px;
  width: calc(100% - 280px);
  overflow-x: hidden;
}

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

.site_header .user {
  width: 20%;
  display: flex;
  justify-content: end;
}

.site_header .Search {
  width: 33.33%;
}

.site_header .Icon {
  width: 20%;
  text-align: start;
}

.site_header .user .dropdown .dropbtn {
  display: flex;
  align-items: center;
  justify-content: end;
}

.site_header .user .dropdown .dropbtn .user_icon {
  margin-right: 15px;
}

.sidebar .menu ul.menu-links {
  padding: 0;
  margin: 0;
}

.site_header .user .dropdown .dropbtn .user_name h2 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 0;
}

.site_header .user .dropdown .dropbtn .user_name p.designation {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: #6c7c93;
}

.site_header .user .dropdown .dropbtn .user_name p.last_login {
  margin: 0px 0 0;
  font-size: 14px;
  color: #222222;
  font-weight: 500;
}

.site_header .user .dropdown .dropbtn .user_icon {
  position: relative;
}

.site_header .user .dropdown .dropbtn .user_icon span.user_edit {
  position: absolute;
  bottom: 0;
  display: block;
  right: -5px;
}

.site_header .Search form {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.site_header .Search form input {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  outline: none;
  border: 1px solid #cecece;
  padding: 10px 20px;
  font-weight: 500;
}

.site_header .Search form button {
  position: absolute;
  right: 0px;
  top: 0;
  border: 0;
  background: #2a3374;
  height: 50px;
  padding: 0 25px;
  border-radius: 0px 50px 50px 0;
  color: #fff;
  font-size: 20px;
}

.site_header .Icon .icon_inner a {
  text-decoration: none;
  margin: 0 0 0 5px;
  transition: 0.3s;
  color: #222;
}

.site_header .Icon .icon_inner a:hover img {
  transform: scale(1.05);
}

header .site_header .Icon .icon_inner a img {
  transition: 0.3s;
}

.site_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 0 40px 0px #0000000d; */
  z-index: 99;
  left: auto;
  width: 100%;
  transition: 0.5s;
  position: sticky;
  top: 0;
  right: auto;
}

.user_icon {
  width: 40px;
  height: 40px;
}

.user_icon img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  border: solid 2px rgb(73 150 156 / 59%);
}

.icon_inner h2 {
  color: #262f40;
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 400;
  white-space: nowrap;
}

.icon_inner h6 {
  color: #6c7c93;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
}

.user_name h2 span {
  color: #262f40;
  font-weight: 400;
}

.profile-verfication-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 31px 15px;
  border-left: solid 2px #49969c;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  margin-top: 0px;
}

.profile-verification {
  width: 80px;
  height: 80px;
}

.profile-verification img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.profile-using-dash {
  display: flex;
  align-items: self-start;
  column-gap: 21px;
}

.profile-using-dash .under-review h6 {
  color: #262f40;
  font-size: 19px;
  margin-bottom: 0px;
  padding-top: 5px;
}

.editprofile-doctor button {
  background: #49969c;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 10px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
}

.editprofile-doctor button:hover {
  transform: scale(1.05);
}

.editprofile-doctor button svg {
  height: 16px;
}

span.approvde {
  border-radius: 10px;
  background: #f3e8ce9e;
  color: #dd9e01;
  padding: 2px 14px 2px 23px;
  border-radius: 35px;
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
}

span.approvde::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #fbbd23;
  left: 12px;
  top: 9px;
  border-radius: 100%;
}

.profile-using-dash p {
  padding: 0px 0px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 800px;
}

.profile-viewrs {
  border: solid 2px #fff;
  box-shadow: 0px 5px 10px 0px #00000014;
  background: #108de345;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  margin-top: 10px;
  flex-direction: column;
}

.profile-viewrs:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.viewrs-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.viewrs-content h6 {
  color: #525252;
  font-size: 17px;
  margin-bottom: 0px;
}

.profile-viewrs h2 {
  color: #262f40;
  font-size: 45px;
  margin-bottom: 0px;
  padding: 0px 0px 10px;
  font-weight: 300;
}

.profile-viewrs span {
  color: #108de3;
  font-size: 15px;
  font-weight: 300;
}

.defty {
  background: #f3e8ff;
}

.deftydrty {
  background: #ffe2e5;
}

.viewrs-content svg {
  height: 20px;
}

.inrease-profile {
  width: 50px;
  height: 50px;
  background: #fa5a7d;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.defty .inrease-profile {
  width: 50px;
  height: 50px;
  background: #bf83ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.udrft .inrease-profile {
  background: #49969c;
}

li.nav-link.active {
  background: #49969c;
  color: #fff;
}

header.d-header {
  background: none;
}

.user {
  position: relative;
  cursor: pointer;
}

.dropbtn {
  padding: 0px 0px;
  border-radius: 12px;
  transition: 0.3s;
  margin-right: 0px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.dropbtn:focus,
.dropbtn:active,
.dropbtn:hover {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.site_header .user .dropdown .dropbtn .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e5eeed;
  box-shadow: none;
}

.user_name h2 {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.user_name .designation {
  font-size: 13px;
  color: #6c757d;
}

.user-dropdown {
  border-radius: 12px;
  box-shadow: none;
  padding: 8px 0;
  min-width: 200px;
  border: solid 1px rgb(204 204 204 / 32%);
  margin-top: 9px !important;
}

.user-dropdown .dropdown-item {
  padding: 10px 16px;

  font-size: 14px;

  transition: 0.2s;

  display: flex;

  align-items: center;

  column-gap: 8px;
}

.user-dropdown .dropdown-item img {
  width: 18px;
}

.user-dropdown .dropdown-item:hover {
  background-color: #49969c5c;
  color: #49969c;
}

.user-dropdown .dropdown-item:hover img {
  filter: invert(53%) sepia(28%) saturate(623%) hue-rotate(140deg)
    brightness(92%) contrast(90%);
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: none;
  border-top: 1px solid rgb(204 204 204 / 32%);
  border-left: 1px solid rgb(204 204 204 / 32%);
  z-index: 999;
}

.sidebar .menu ul.menu-links li.active svg a svg {
  color: #fff;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link.active a svg {
  color: #fff;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link.active a span.text.nav-text {
  color: #fff;
  font-weight: 300;
}

.sidebar .menu-bar .menu ul.menu-links li.nav-link:hover a svg {
  color: #fff;
}

header.d-header {
  margin: 0;
  padding: 15px;
}

.footer-dash {
  border-radius: 8px;
  padding: 12px 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
  margin-top: 30px;
  background: linear-gradient(
    90deg,
    #223f73 0%,
    #122c52 40%,
    #0a1f3f 70%,
    #06172e 100%
  );
}

.footer-dash p {
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
  font-size: 12px;
}

.under-review span {
  color: #49969c;
  font-size: 14px;
  display: block;
  padding: 5px 0px;
}

.dash-doctor-profile {
  padding: 15px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 0 40px 0px #0000000d; */
  margin-right: 0px;
  z-index: 99;
  margin-top: 0px;
  border: solid 1px #e5eeed;
}

.dcotr-profile-img-d {
  display: flex;
  align-items: start;
  column-gap: 20px;
  align-items: center;
  margin-bottom: 33px;
}

.doctr-dashboard-profile {
  width: 90px;
  height: 90px;
  position: relative;
}

.doctr-dashboard-profile img {
  width: 100%;
  height: 100%;
}

.profile-dashboard-content h6 {
  color: #262f40;
  font-size: 21px;
  margin-bottom: 3px;
  font-weight: 500;
}

.profile-dashboard-content p {
  color: #6c7c93;
  font-size: 14px;
  margin-bottom: 0px;
}

span.upload-doctor-profile {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #49969c;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* font-size: 9px; */
}

span.upload-doctor-profile svg {
  height: 16px;
}

.account-information input:focus {
  background: #ffffff;
  border: solid 1px #49969c;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid #d1d5db;
  cursor: pointer;
  font-size: 14px;
  background: #f3f4f6;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip:hover {
  background: #e5e7eb;
}

.chip.active {
  background: #e0f2fe;
  border: 1px solid #3b82f6;
  color: #2563eb;
}

.remove {
  font-weight: bold;
  cursor: pointer;
}

.area-experties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 13px;
}

.chip {
  padding: 6px 16px;
  border-radius: 25px;
  border: 1px solid #e0e6eb;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

/* Hide cross by default */
.chip .cross {
  display: none;
  font-size: 14px;
}

/* When checkbox checked */
input[type="checkbox"]:checked + .chip {
  background: #e7f2fc;
  border-color: #1285e2;
  color: #1285e2;
}

/* Show cross when selected */
input[type="checkbox"]:checked + .chip .cross {
  display: inline;
  display: flex;
}

label.chip {
  color: #6c7c93;
  font-weight: 400;
}

span.cross svg {
  width: 16px;
}

.document-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
  max-width: 100%;
  margin: 8px auto;
  height: 100%;
  border: 1px solid #e5eeed;
}

.document-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
}

.document-info {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.document-icon {
  width: 45px;
  height: 45px;
  background: #e6f7ee;
  color: #10b981;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.document-text h4 {
  color: #262f40;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding: 5px 0px;
  margin-bottom: 0px;
}

.document-text p {
  color: #525252;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.file-name {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}

.required {
  color: red;
}

.status-badge {
  padding: 3px 28px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  width: 90px;
  font-size: 12px;
  font-weight: 400;
}

.status-badge:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #f4a261;
  left: 12px;
  top: 9px;
  border-radius: 100%;
}

.status-badge.approved:after {
  background: #10b981;
}

.status-badge.rejected:after,
.status-badge.failed:after {
  background: #ef4444;
}

.status-badge.pending {
  background: #fef3c7;
  color: #f4a261;
}

.status-badge.approved {
  background: #d1fae5;
  color: #10b981;
}

.status-badge.rejected,
.status-badge.failed {
  background: #fee2e2;
  color: #ef4444;
}

.status-badge.in-progress,
.status-badge.in_progress {
  background: #dbeafe;
  color: #2563eb;
}

.upload-wrapper {
  border: 2px dashed #d1d5db;
  border-radius: 14px;
  padding: 0px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-wrapper:hover {
  border-color: #49969c91;
  background: #49969c14;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 22px;
  color: #525252;
  margin-bottom: 8px;
}

.upload-content p {
  margin: 5px 0;
  font-size: 15px;
}

.browse-text {
  color: #2563eb;
  font-weight: 500;
}

.upload-content small {
  font-size: 12px;
  color: #9ca3af;
}

.medical-license .document-icon {
  background: #e8f7f6;
}

.medical-license .document-icon svg {
  color: #2f8f9d;
}

.upload-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.upload-icon {
  font-size: 22px;
  color: #525252;
  margin-bottom: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  background: #49969c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
}

.document-card.medical-license p {
  margin-bottom: 0px;
  color: #525252;
  font-size: 12px;
  font-weight: 400;
  text-align: start;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

p.preview-pdf span i {
  font-size: 70px;
  /* color: #fe6565; */
}

.dash-doctor-profile h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}

.dash-doctor-profile.procedures .area-experties {
  margin-bottom: 0px;
}

.dash-doctor-profile.procedures h6 {
  margin-bottom: 14px;
}

.document-card.medical-license .account-information {
  padding: 0px 0px 0px;
}

.upload-icon svg {
  width: 16px;
}

.add-procedure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  width: 100%;
  background: #fff;
  /* box-shadow: 0 0 40px 0px #0000000d; */
  border-radius: 10px;
  padding: 15px;
}

.device-names label {
  color: #262f40;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 6px;
}

.device-names {
  display: flex;
  column-gap: 20px;
  width: 75%;
  align-items: center;
}

.search-withfilters {
  /* width: 100%; */
  margin-top: 29px;
}

.search-withfilters input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.search-withfilters input:focus {
  background: #ffffff;
  border: solid 1px #49969c;
}

.device-names .select-wrapper {
  background: #fff;
  border-radius: 6px;
  padding: 0px 0px;
  color: #525252;
  /* border: solid 1px #1f2b3e40; */
  font-size: 14px;
  transition: 0.3s ease-in all;
  min-width: 250px;
}

.device-names .select-wrapper select {
  font-size: 14px;
  padding: 10px;
}

.device-names select:focus {
  background: #ffffff;
  border: solid 1px #49969c;
}

.add-procedure button {
  background: #49969c;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 20px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  white-space: nowrap;
}

.add-procedure button:hover {
  transform: scale(1.05);
}

/* Card Container */
.submission-card {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 900px;
}

/* Title */
.card-title {
  font-size: 18px;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 20px;
}

/* Table — unified design (exact match with care-plan-list__table) */
.submission-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.submission-table thead {
  background: #f6f8fa;
}

.submission-table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
}

.submission-table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  white-space: nowrap;
}

.submission-table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.submission-table tbody tr:hover {
  background: #fafbfc;
}

/* Round corner cells so background doesn't cut the radius */
.submission-table thead th:first-child {
  border-top-left-radius: 10px;
}

.submission-table thead th:last-child {
  border-top-right-radius: 10px;
}

.submission-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.submission-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Extra 15px breathing room on left + right edges of all cells */
.submission-table thead th:first-child,
.submission-table tbody td:first-child {
  padding-left: 35px;
}

.submission-table thead th:last-child,
.submission-table tbody td:last-child {
  padding-right: 35px;
  border-right: 1px solid #e5e7eb;
}

/* Status Badge */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
}

/* Approved */
.status.approved {
  background-color: #dcfce7;
  color: #0fb981;
}

/* Pending */
.status.pending {
  background-color: #fef3c7;
  color: #f4a261;
}

/* Rejected (was previously undefined - rendered as unstyled inline span) */
.status.rejected,
.status.failed,
.status.declined {
  background-color: #fee2e2;
  color: #ef4444;
}

/* In-progress / under review */
.status.in-progress,
.status.in_progress,
.status.review {
  background-color: #dbeafe;
  color: #2563eb;
}

/* Active / completed alias */
.status.active,
.status.completed {
  background-color: #d1fae5;
  color: #10b981;
}

/* Dot */
.status .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
}

.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.custom-modal {
  background: #fff;
  width: 700px;
  padding: 20px;
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.08),
    0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  animation: modalScaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleIn {
  from {
    transform: scale(0.96) translateY(8px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.custom-modal h5 {
  margin: 0;
}

button.submit-btn {
  background: #49969c;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 17px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  /* display: inline-block; */
  margin: 0 auto;
}

button.submit-btn:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.custom-modal-overlay .account-information {
  padding: 0px;
}

.custom-modal-overlay .modal-header {
  position: relative;
  margin-bottom: 11px;
  border-bottom: solid 1px rgb(221 221 221 / 73%);
  padding-bottom: 12px;
  padding-right: 0px;
}

.custom-modal-overlay .modal-header h4,
.custom-modal-overlay .modal-header h1,
.custom-modal-overlay .modal-header h2,
.custom-modal-overlay .modal-header h3,
.custom-modal-overlay .modal-header h5,
.custom-modal-overlay .modal-header h6,
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header h4,
.modal-header h5,
.modal-header h6 {
  color: #262f40;
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.custom-modal-overlay button.close-btn,
.modal-header button.close-btn {
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  top: 0px;
  z-index: 2;
  padding: 4px;
}

button.close-btn img {
  width: 11px;
}

.custom-modal-overlay .account-information label {
  font-weight: 400;
}

.device-details {
  padding: 0px;
  margin: 0 0 0px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-right: 0px;
  z-index: 9;
  border: solid 1px rgb(73 150 156 / 40%);
  border-bottom: solid 3px #49969c;
  transition: 0.3s ease-in all;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.device-details:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.device-text-details {
  padding: 15px;
}

.device-img {
  width: 100%;
  height: 220px;
  background: #ffffff;
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.device-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

.device-img img:hover {
  transform: scale(1.1);
  overflow: hidden;
}

.device-text-details {
  padding: 10px;
}

.device-text-details-sound h6 {
  font-weight: 400;
  margin-bottom: 7px;
  font-size: 17px;
}

.device-text-details-sound p {
  font-size: 14px;
  color: #6c757d;
  font-weight: 400;
  margin-bottom: 0px;
}

.view-details-sop {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 18px;
}

.view-details-sop p {
  background: #eef2f6;
  border-radius: 6px;
  padding: 5px 10px;
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
}

.view-details-sop a {
  text-decoration: none;
  background: #eaf5f4;
  color: #49969c;
  border: 1px solid #b8ddd9;
  border-radius: 10px;
  font-size: 13px;
  width: 36px;
  height: 36px;
  font-size: 15px;
  display: flex;
  align-items: center;
  column-gap: 2px;
  font-weight: 400;
  justify-content: center;
}

.view-details-sop a svg {
  width: 16px;
}

span.device-approvie {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  background: rgb(171 241 208 / 88%);
  padding: 2px 10px 2px 18px;
  border-radius: 35px;
  color: #16a34a;
  font-weight: 400;
  z-index: 9999;
}

span.device-approvie:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #16a34a;
  left: 9px;
  top: 8px;
  border-radius: 100%;
}

span.device-approvie.pending {
  background: #f3e8ce9e;
  color: #e9aa0e;
}

span.device-approvie.pending:after {
  background: #fbbd23;
}

span.device-approvie.reject {
  background: #ecd6db;
  color: #d1374d;
}

span.device-approvie.reject:after {
  background: #d1374d;
}

.submit-approvial {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

button.submit-btn.cancel {
  background: #fff;
  border-radius: 36px;
  border: solid 1px #49969c;
  color: #49969c;
}

.submit-approvial button {
  transition: 0.3s ease-in all;
}

.submit-approvial button:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

.submission-table thead {
  background: #f6f8fa;
}

span.status.pending span.dot {
  background: #f59e0b;
}

.area-experties.dash-doctor-profile .area-experties {
  margin-bottom: 0px;
}

.insurance-plan {
  padding: 30px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 0px;
  z-index: 99;
  margin-top: 0px;
}

.insurance-plan h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 10px;
}

.insurance-plan .area-experties {
  margin-bottom: 0px;
}

.insurance-status {
  padding: 20px;
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-right: 0px;
  z-index: 99;
  margin-top: 30px;
  border: solid 1px #108de352;
  border-bottom: solid 3px #108de3;
  transition: 0.3s ease-in all;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insurance-status:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in all;
}

.insurance-heading h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0px;
  padding: 20px 0px;
}

.insurance-status h6 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0px;
  padding: 0px 0px;
}

.insurance-status span.device-approvie {
  top: 20px;
  right: 20px;
}

.legal-ploicy-servi.legal-ploicy-servi-back {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-direction: row !important;
}

.legal-ploicy-servi.legal-ploicy-servi-back ul.breadcrumb {
  font-size: 14px;
}

.legal-ploicy-servi.legal-ploicy-servi-back li.breadcrumb-item {
  color: #525252;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

.legal-ploicy-servi.legal-ploicy-servi-back li.breadcrumb-item a {
  color: #49969c;
  text-decoration: none;
}

.custom-modal-overlay.termcondition .modal-body.account-information {
  height: 500px;
  overflow: auto;
  overflow-x: hidden;
}

.custom-modal-overlay.termcondition
  .modal-body.account-information
  .legeal-service {
  padding: 0px 15px;
}

.custom-modal-overlay.termcondition
  .modal-body.account-information
  .legeal-service
  h6 {
  font-size: 15px;
  padding: 11px 0px 5px;
}

.custom-modal-overlay.termcondition
  .modal-body.account-information
  .legeal-service
  ul
  li {
  font-size: 14px;
}

.custom-modal-overlay.termcondition
  .modal-body.account-information
  .legeal-service
  ul {
  padding: 0px;
  margin: 0px 37px;
}

/* Scrollbar width */
.custom-modal-overlay.termcondition
  .modal-body.account-information::-webkit-scrollbar {
  width: 6px;
}

/* Scrollbar track */
.custom-modal-overlay.termcondition
  .modal-body.account-information::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Scrollbar thumb */
.custom-modal-overlay.termcondition
  .modal-body.account-information::-webkit-scrollbar-thumb {
  background: #49969c5c;
  border-radius: 10px;
}

/* Hover */
.custom-modal-overlay.termcondition
  .modal-body.account-information::-webkit-scrollbar-thumb:hover {
  background: #0c6fb3;
}

.custom-modal-overlay.termcondition .custom-modal.large {
  width: 800px;
}

.custom-modal-overlay.termcondition .custom-modal.large button.submit-btn {
  width: auto;
  margin: 5px 0px 0px;
}

.custom-modal-overlay.termcondition .modal-footer button.disable-submit {
  background: #49969c;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 17px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
  opacity: 0.5;
}

.custom-modal-overlay.termcondition .modal-footer {
  display: flex;
  justify-content: center;
  padding: 10px 0px 0px;
  border-top: solid 1px rgb(221 221 221 / 31%);
  margin-top: 11px;
  width: calc(100% + 42px);
  margin-left: -21px;
}

.custom-modal-overlay.termcondition
  .modal-footer
  .terms-accept-btn
  button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #108de3;
}

.terms-link {
  color: #49969c;
  cursor: pointer;
  font-weight: 400;
  text-decoration: underline;
}

.terms-progress {
  width: 100%;
  height: 4px;
  background: #eee;
  margin-top: 8px;
}

.terms-progress-bar {
  height: 4px;
  background: #1a73e8;
  transition: width 0.2s ease;
}

.accepted-label {
  margin-left: 10px;
  color: green;
  font-weight: 300;
}

.terms-accept-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-section {
  padding: 50px 0px;
}

.profile-dropdown button img {
  max-width: 17px;
}

hr.divider {
  margin: 5px 0px;
  border-color: #848181;
}

.profile-wrapper button.user-profile:hover {
  background: #64a6aba1 !important;
}

.swal-confirm-btn,
.swal-cancel-btn {
  width: 85px;
}

.css-t3ipsp-control {
  box-shadow: none !important;
  border: 1px solid #ccc !important;
}

.css-t3ipsp-control--is-focused {
  box-shadow: none !important;
  border: 1px solid #ccc !important;
}

/* =========  why ai surgmatch CSS start here =================== */

.for-providers {
  background: url(/assets/img/slider.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  margin-top: 87px;
  position: relative;
  background-position: center;
}

.for-providers .row {
  align-items: center;
}

.for-providers .surgmatch-content-tt img {
  max-width: 80%;
  padding: 4px;
  border-radius: 18px;
  background: linear-gradient(90deg, #27d3e254, #3b82f66b);
  display: inline-block;
}

.platfrom .health-care {
  padding-top: 0px;
}

.platfrom .health-care h1 {
  margin-bottom: 0px;
}

.platfrom .health-care p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: center;
  padding-bottom: 34px;
}

.ourpartner-platform {
  background: linear-gradient(135deg, #367fc7, #2da2f7);
  padding: 50px 0px;
  border-radius: 20px;
  position: relative;
}

.ourpartner-platform::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/our-partner.svg);
  bottom: 0px;
  left: 0px;
  contain-intrinsic-block-size: auto 100px;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.ourpartner-platform h2 {
  color: #fff;
  font-size: 27px;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 9999;
}

.ourpartner-platform button {
  background: #fff;
  border-radius: 36px;
  color: #108de3;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #108de3;
  transition: 0.3s ease-in all;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 26px auto 0px;
  position: relative;
  z-index: 999;
}

.ourpartner-platform button:hover {
  background: #1b1b3f;
  border-color: #fff;
  color: #fff;
  transform: scale(1.05);
}

.partnerwith-surgmatch {
  padding: 20px 0px 60px;
}

.platfrom .ai-translate img {
  max-width: 50px;
}

.legal-ploicy-servi p {
  margin-bottom: 0px;
  padding: 7px 0px;
  color: #525252;
  font-size: 15px;
  font-weight: 400;
}

.expected-plan {
  padding: 15px 0px 60px;
}

.plan-details {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border-bottom: solid 2px #108de3;
  margin-bottom: 0px;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  column-gap: 20px;
  transition: 0.3s ease-in all;
}

.plan-details:hover {
  transform: translateY(-10px);
}

.patient-details {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.plan-image {
  width: 100px;
  height: 100px;
  background: #cfecff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-start-date p {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  text-align: start;
  padding-top: 0px;
  text-transform: uppercase;
}

.plan-start-date h6 {
  color: #108de3;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
  padding-top: 0px;
  text-transform: uppercase;
}

.plan-details h2 svg {
  color: #108de3 !important;
  width: 20px;
}

.plan-details h2 {
  color: #262f40 !important;
  font-size: 18px;
  font-weight: 400;
  align-items: self-start;
  width: 100%;
  padding: 0px 0px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.recovery-plan {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.plan-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.plan-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #262f40;
}

.plan-week {
  font-size: 15px;
  color: rgb(16, 141, 227);
  margin: 3px 0 0;
  text-align: center;
}

.plan-progress-bar {
  width: 100%;
  height: 10px;
  background: #e5e9ef;
  border-radius: 10px;
  position: relative;
}

.plan-progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #4fc3f7, #1e88e5, #108de3);
  border-radius: 10px;
}

.plan-dots {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.plan-dot {
  width: 10px;
  height: 10px;
  background: #cfd6df;
  border-radius: 50%;
  position: relative;
}

.plan-dot.active {
  background: #1e88e5;
}

.plan-dot-label {
  position: absolute;
  top: -4px;
  left: 20px;
  font-size: 12px;
  color: #4a6fa5;
}

.plan-details.expected-recovery {
  flex-direction: column;
}

.recommende-img img {
  border-radius: 5px;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.recommended-plan {
  padding: 0px 0px 60px;
}

.recomended-plan-content h2 {
  color: #262f40;
  font-size: 21px;
  font-weight: 300;
}

.recomended-plan-content p {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 34px;
}

.Initial-cons {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
  border-bottom: solid 1px #108de317;
  padding-bottom: 18px;
  border-radius: 10px;
}

.Initial-cons-content p {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.recommende-img {
  display: flex;
  justify-content: end;
}

.Initial-cons-icon {
  background: #cfecff;
  width: calc(75px - 15px);
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.Initial-cons-icon svg {
  color: #108de3 !important;
  width: 30px;
}

.repaier {
  position: relative;
}

.repaier::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  top: 0px;
  background: transparent;
  left: 29px;
  z-index: -1;
  border: 1px dashed #1d88e5;
}

.Initial-cons-content {
  width: calc(100% - 75px);
}

.keyinstruction .recommende-img {
  display: flex;
  justify-content: start;
}

.keyinstruction {
  padding: 0px 0px 60px;
}

.keyinstruction .your-option {
  width: 100%;
}

.keyinstruction .recomended-plan-content h2 {
  color: #262f40;
  font-size: 21px;
  font-weight: 300;
  padding-bottom: 17px;
}

.keyinstruction .body-icon {
  width: calc(75px - 15px);
}

.keyinstruction .body-icon p {
  width: calc(100% - 75px);
}

.questions-basic {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border-bottom: solid 2px #108de3;
  margin-bottom: 0px;
  align-items: center;
  position: relative;
  transition: 0.3s ease-in all;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  column-gap: 20px;
}

.questions-basic:hover {
  transform: translateY(-10px);
}

.questions-basic h6 {
  color: #262f40;
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 10px;
}

.questions-basic ul {
  padding: 0px;
  margin: 0px 20px;
}

.questions-basic ul li {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0px;
}

.specfic-questions {
  padding: 0px 0px 60px;
}

.keyinstruction .row {
  align-items: center;
}

.body-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.human-body {
  width: 300px;
  height: auto;
}

#tooltip {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  width: 250px;
  font-size: 12px;
}

.part {
  fill: transparent;
  stroke: #ccc;
  cursor: pointer;
}

.part:hover {
  fill: rgba(0, 150, 255, 0.4);
}

/* * after the convert to in next js added the new css start here */

.matched-partner img {
  width: 20px;
}

.Trust-partner img {
  width: 20px;
}

.Confident-partner img {
  width: 20px;
}

.supported-partner img {
  width: 20px;
}

/* chatgpt css */

.sysmt-img {
  position: relative;
  margin-left: 8%;
}

.toggle-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #108de3;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
}

/* merei css */

.profile-wrapper button.user-profile img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.profile-wrapper button.user-profile {
  width: 40px;
  height: 40px;
  padding: 1px;
}

/* Header */
.procedure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.procedure-header h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Divider */
.divider {
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

.procedures-body p {
  background: #f5f7f8;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: #525252;
  font-weight: 400;
  border: solid 1px #dddddd1f;
  margin-bottom: 6px;
}

.procedures-body label {
  color: #262f40;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.view-procedures {
  background: #eaf5f4;
  color: #49969c;
  border: 1px solid #b8ddd9;
  border-radius: 10px;
  font-size: 13px;
  width: 36px;
  height: 36px;
}

.prcode-tabing div#nav-tab {
  border-bottom: none;
  display: flex;
  align-items: center;
  column-gap: 7px;
  margin-bottom: 20px;
}

.prcode-tabing .nav-tabs .nav-link.active {
  background: #49969c;
  color: #fff;
  border-bottom: 2px solid #49969c;
}

.prcode-tabing .nav-tabs .nav-link {
  /* border: solid 1px #cfecff; */
  border-radius: 5px;
  padding: 5px 18px;
  font-size: 15px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
  color: #49969c;
  background: #ffffff;
  border: none;
  border-bottom: solid 2px #49969c !important;
}

.prcode-tabing .nav-tabs .nav-link:hover {
  background: #49969c;
  color: #fff;
  border-bottom: solid 2px #49969c !important;
  border: none;
}

.custom-page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d8e3e2;
  background: #ffffff;
  color: #1f2a37;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.custom-page-btn:hover:not(:disabled) {
  background-color: #49969c;
  color: #fff;
}

.custom-page-btn:disabled {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d8e3e2;
  background: #ffffff;
  color: #1f2a37;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.custom-page-btn:disabled:hover {
  background: #eaf5f4;
  border-color: #b8ddd9;
  color: #49969c;
}

.pagenation-demo {
  display: flex;
  align-items: center;
  column-gap: 0px;
}

.pagenation-demo ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.pagenation-demo ul li {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d8e3e2;
  background: #ffffff;
  color: #1f2a37;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.pagenation-demo ul li:hover {
  background: #eaf5f4;
  border-color: #b8ddd9;
  color: #49969c;
}

.pagination-list {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination-list li {
  cursor: pointer;
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #eee;
}

.pagination-list li.active-page {
  background: #49969c;
  border-color: #49969c;
  color: #ffffff;
  box-shadow: 0 4px 10px -6px rgba(47, 143, 157, 0.55);
}

.file-list {
  margin-top: 10px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
}

.file-preview-list {
  margin-top: 0px;
  height: 125px;
  width: 100%;
}

.file-preview-item {
  position: relative;
  margin-bottom: 10px;
  padding: 0px 10px;
  background: none;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.progress-bar {
  height: 6px;
  background: #ddd;
  margin-top: 5px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #0f8de3;
  transition: width 0.3s;
}

.remove-btn {
  position: absolute;
  top: -3px;
  right: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  background: #fe6565;
  border-radius: 100%;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.rd-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Box */
.rd-modal-box {
  width: 500px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: rdFade 0.3s ease;
}

/* Header */
.rd-modal-header {
  background: #49969c42;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.rd-device-head {
  display: flex;
  gap: 15px;
}

.rd-device-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 5px;
}

.rd-device-title h2 {
  color: #262f40;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 6px;
  width: 260px;
}

.rd-device-title p {
  color: #525252;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Status */
.rd-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.rd-approved {
  background: #dcfce7;
  color: #16a34a;
}

/* Close */
.rd-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Body */
.rd-modal-body {
  padding: 15px;
}

/* Grid */
.rd-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.rd-info-item label {
  padding: 0px 0px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
}

.rd-info-item p {
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  padding: 5px 0px;
  margin-bottom: 0px;
}

/* Section */
.rd-section h4 {
  margin-bottom: 10px;
}

.rd-section ul {
  padding-left: 18px;
}

.rd-section li {
  margin-bottom: 6px;
}

/* Footer */
.rd-modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #e2e8f0;
  text-align: right;
}

.rd-close-footer {
  background: #f1f5f9;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* Animation */
@keyframes rdFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rd-info-item {
  position: relative;
  padding-right: 20px;
}

/* Right border */
.rd-info-item::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #e2e8f0;
}

.rd-info-item:nth-child(2n)::after {
  display: none;
}

.rd-device-icon img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.rd-modal-box {
  position: relative;
}

.rd-modal-box button {
  position: absolute;
  right: 8px;
  background: #fff;
  border: none;
  border-radius: 100%;
  top: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pg-approved {
  margin-right: 30px;
}

.custom-dropdown-select .css-1dyz3mf {
  min-height: 41px;
  max-height: 41px;
  overflow: auto;
}

.custom-dropdown-select small {
  font-size: 14px !important;
  color: #ffc107;
  padding-top: 10px;
}

.custom-dropdown-select__control {
  border: solid 1px #cdcfd3;
}

.custom-dropdown-select__option {
  display: flex !important;
  align-items: center !important;
  background: #cee2e5 !important;
  margin: 10px 0px !important;
  width: calc(100% - 20px) !important;
  margin: 7px auto !important;
  border-radius: 0px !important;
  color: #2f777f !important;
  font-size: 14px !important;
}

.custom-dropdown-select__option--is-selected {
  background: #4d9ca1 !important;
  color: #fff !important;
}

.custom-dropdown-select__option:hover {
  background-color: #49969c !important;
  color: #fff !important;
}

.filter-device {
  width: 100%;
}

.custom-dropdown-select__menu {
  /* position: relative; */
  z-index: 9999 !important;
}

.custom-dropdown-select__option input[type="checkbox"] {
  background: #71c1c5;
  width: 20px;
  height: 20px;
  appearance: none;
}

.custom-dropdown-select__option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-dropdown-select__option input[type="checkbox"] {
  border-radius: 5px;
}

.custom-dropdown-select__option input[type="checkbox"]:checked {
  transform: scale(1.1);
}

.custom-dropdown-select__menu-list {
  z-index: 9999 !important;
  max-height: 200px;
  overflow-y: auto;
}

/* Scrollbar width */
.custom-dropdown-select__menu-list::-webkit-scrollbar {
  width: 6px;
}

/* Scrollbar track */
.custom-dropdown-select__menu-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Scrollbar thumb */
.custom-dropdown-select__menu-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Hover effect */
.custom-dropdown-select__menu-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.custom-dropdown-select__single-value {
  font-size: 14px;
  color: #87888a;
}

.custom-dropdown-select__placeholder {
  font-size: 14px;
  color: #87888a;
}

.custom-dropdown-select__menu {
  overflow: hidden !important;
}

.document-text {
  min-height: 70px;
  width: calc(100% - 60px);
}

.upd-drag .upload-wrapper {
  width: 70%;
  padding: 15px;
  margin: 0 auto;
}

.upd-drag {
  margin-bottom: 30px;
}

.document-card.medical-license.pdf-converter .upload-wrapper {
  width: 70%;
}

.upload-preview-image {
  display: flex;
  justify-content: start;
  column-gap: 10px;
}

.preview-pdf {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  row-gap: 10px;
  margin-bottom: 0px;
}

.edit-btn {
  position: absolute;
  top: -3px;
  right: 44px;
  border: none;
  cursor: pointer;
  background: #49969c;
  border-radius: 100%;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.document-card.medical-license.pdf-converter .upload-preview-image {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0px 10px;
}

.document-card.medical-license.pdf-converter
  .upload-preview-image
  .upload-wrapper {
  width: calc(25% - 15px);
}

.upload-wrapper.gvt-id .edit-btn {
  right: 0px;
}

.upload-wrapper.medi-certif .edit-btn {
  right: 30px;
}

.upload-wrapper.medi-certif button.remove-btn {
  right: 0px;
}

/* Scrollbar width */
.document-card.medical-license.pdf-converter
  .upload-preview-image::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.document-card.medical-license.pdf-converter
  .upload-preview-image::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb */
.document-card.medical-license.pdf-converter
  .upload-preview-image::-webkit-scrollbar-thumb {
  background: #49969c5c;
  border-radius: 10px;
}

.custom-dropdown-select__control {
  height: 43px;
  border-radius: 6px !important;
}

.custom-dropdown-select__control:focus {
  background: #ffffff;
  border: solid 1px #49969c;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.custom-dropdown-select__control.css-13cymwt-control:focus-visible {
  box-shadow: none !important;
}

.custom-dropdown-select__control {
  min-height: 41px;
  max-height: 41px;
  overflow: auto;
}

.pagination .text-muted {
  font-size: 14px;
}

.button-action {
  display: flex;
  gap: 10px;
}

.body-wrist {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 10px;
}

.procedures-body {
  width: 100%;
}

.no-device-founddetails {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.no-device-founddetails p {
  margin-bottom: 0px;
  text-align: center;
}

.no-device-founddetails img {
  max-width: 200px;
}

.no-device-founddetails p {
  color: #6c7c93;
  margin-bottom: 0px;
  font-size: 16px;
}

/* Parent container fix */
.table-wrapper {
  overflow: visible;
  /* hidden hoga to cut karega */
  padding: 1px;
  /* thoda space de do */
}

.device-text-details h6 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 6px;
}

.vedty-data p {
  padding: 0px 0px 20px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.vedty-data {
  border-bottom: solid 1px #dddddd94;
}

.clear-filters-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 29px;
}

.add-procedure .prcode-tabing div#nav-tab {
  margin-bottom: 0px;
}

table.submission-table th span img {
  max-width: 12px;
  margin-bottom: 2px;
  cursor: pointer;
}

.search-filters-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search-procd {
  position: relative;
}

.search-procd input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 38px 10px 12px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.search-procd input:focus {
  background: #ffffff;
  border: solid 1px #49969c;
}

.search-procd span {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #49969c;
  cursor: pointer;
}

.ftr-dash p {
  margin-bottom: 0px;
  color: #49969c;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

button.clear-ftil {
  background: #dbdbdb;
  color: #5a6069;
  border-color: #eff1f3;
}

.add-procedure.add-procedure-filters {
  column-gap: 10px;
}

.recvery-timeline {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}

.recvery-timeline .css-b62m3t-container {
  width: 100%;
}

.recvery-timeline .custom-dropdown-select--is-disabled.css-3iigni-container {
  width: 100%;
}

.table-wrapper::-webkit-scrollbar {
  width: 8px;
}

/* Track (background) */
.table-wrapper::-webkit-scrollbar-track {
  background: #e6f2f3;
  border-radius: 10px;
}

/* Thumb (scroll moving part) */
.table-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #62a5aa, #49969c);
  border-radius: 10px;
}

/* Hover effect */
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #49969c5c, #49969c5c);
}

.bottom-arrow img {
  filter: invert(54%) sepia(20%) saturate(300%) hue-rotate(140deg)
    brightness(90%) contrast(90%);
}

/* added new css for the evidance basded section  */

.evidance-based {
  background: #fff;
  padding: 80px 0px;
}

.evidance-data {
  position: relative;
}

.stat-card-lite {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #64aab1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-copy h4 {
  font-size: 35px;
  line-height: 50px;
  color: #273047;
  margin: 0 0 0px;
  font-weight: 300;
}

.stat-copy p {
  margin: 0;
  color: #525252;
  font-size: 16px;
  line-height: 30px;
}

.stat-divider {
  width: 2px;
  height: calc(100% - 20px);
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 12px;
  right: 0px;
}

.stat-circle img {
  max-width: 32px;
}

.share-needsbox span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #f1f5f9;
  font-size: 55px;
  line-height: 100%;
}

.what-offer-card {
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  position: relative;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.offer-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(73 150 156 / 28%);
  border-radius: 100%;
  margin: 0px 0px 45px;
}

.what-offer-card h6 {
  color: #262f40;
  font-size: 23px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 13px;
}

.what-offer-card p {
  color: #525252;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

.what-offer-card span {
  position: absolute;
  top: 0px;
  right: 0px;
}

section.smarter-way-faq {
  display: flex;
  align-items: center;
  column-gap: 63px;
}

.faq-media::before {
  content: "Patient / Doctor Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d7a8f;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
}

.faq-wrap h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 26px;
  color: #262f40;
  margin-bottom: 47px;
}

.faq-wrap h2 span {
  color: #49969c;
}

.faq-questions .accordion-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0 !important;
  background: none;
}

.faq-questions .accordion-button {
  padding: 23px 0;
  font-weight: 300;
  color: #000;
  background: none;
  box-shadow: none !important;
  font-size: 20px;
  border-bottom: solid 1px #000000;
  border-radius: 0px !important;
}

.faq-questions .accordion-button:not(.collapsed) {
  background: transparent;
  color: #111;
  border-bottom: none;
}

.faq-questions .accordion-body {
  padding: 0 0 20px;
  color: rgb(0 0 0 / 65%);
  line-height: 1.7;
  border-bottom: solid 1px #000;
  font-size: 18px;
}

.faq-wrap {
  padding-right: 53px;
}

.faq-wrap h2.accordion-header {
  margin-bottom: 0px;
}

.faq-img {
  width: 50%;
}

.faq-questions {
  width: 50%;
}

.faq-img img.img {
  max-width: 100%;
}

.faq-questions .accordion-button::after {
  background-image: url(../img/Vector-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  margin-right: 10px;
}

.faq-questions .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

.testimonial-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/testimonails-bg.png) no-repeat left center;
  background-size: 60%;
  z-index: 0;
  pointer-events: none;
  background-position: center;
}

.testimonial-section .title {
  font-size: 42px;
  font-weight: 300;
  color: #262f40;
  margin-bottom: 5px;
  line-height: 42px;
}

.title span {
  color: #49969c;
}

.testimonial-section .subtitle {
  color: #5c5c5c;
  margin-bottom: 70px;
  font-size: 20px;
  font-weight: 300;
}

/* Cards Layout */
.testimonial-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-wrapper .swiper-wrapper {
  width: 100%;
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(77, 150, 153, 0.3);
}

/* Stars */
.stars {
  color: #ff7f22;
  font-size: 16px;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 2px;
}

/* Content */
.testimonial-card h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
  color: #262f40;
  margin-bottom: 0px;
}

.testimonial-card p {
  font-size: 16px;
  color: #5c5c5c;
  margin: 20px 0;
  line-height: 1.6;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user span {
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.testimonial-card .user img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: solid 1px #49969c;
  object-fit: cover;
}

.user span {
  font-weight: 500;
}

/* Quote Icon */

/* Bottom notch effect */
.testimonial-card::after {
  right: 0px;
  content: "";
  position: absolute;
  bottom: -1px;
  right: 50px;
  width: 88px;
  height: 16px;
  background: transparent;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(77, 150, 153, 0.3);
  border-top: none;
  transform: rotate(180deg);
}

/* Buttons */
.testimonial-section .nav-btns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}

.btn {
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.prev {
  background: rgb(76 150 153 / 70%);
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
}

.next {
  background: #4c9699;
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
}

button.btn.prev:hover {
  background: #49969c;
  color: #fff;
}

button.btn.next img.img-fluid {
  transform: rotate(180deg);
}

button.btn.next:hover {
  background: #49969c;
  color: #fff;
}

.feedback-user-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ==============  providers page css start here ============================ */

/* ================================================================
   Provider Page
   ================================================================ */

/* Hero */
.provider-hero {
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: url(../img/providers-bg.png) no-repeat;
  background-size: cover;
  background-position: right;
  height: 700px;
}

.provider-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.provider-hero-content {
  position: relative;
  z-index: 2;
}

.provider-hero-content h1 {
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 9999;
}

.provider-hero-content h1 span {
  color: #49969c;
}

.provider-hero-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.provider-join-btn {
  display: inline-block;
  background: #49969c;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in all;
}

.provider-join-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

.provider-hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.provider-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Trusted By */
.provider-trusted {
  background: #f5f5f7;
  padding: 40px 0;
  position: relative;
}

.provider-trusted::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/trusted-surgmatch.svg);
  bottom: 0px;
  left: 0px;
  contain-intrinsic-block-size: auto 100px;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.provider-trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  flex-direction: column;
}

.provider-trusted-text {
  font-size: 45px;
  font-weight: 300;
  line-height: 50px;
  color: #262f40;
  margin-bottom: 12px;
  text-align: center;
}

.provider-trusted-text strong {
  color: #49969c;
}

.provider-trusted-avatars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.provider-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  margin-left: -20px;
}

.provider-trusted-avatars .provider-avatar:first-child {
  margin-left: 0;
}

.provider-avatar-count {
  background: #49969c;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  /* padding: 4px 10px; */
  border-radius: 20px;
  margin-left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #fff;
}

/* Why Surgeons */
.provider-why {
  background: #fff;
  padding: 90px 0;
}

.provider-why-title {
  font-size: 38px;
  font-weight: 300;
  color: #1b2840;
  line-height: 1.2;
  margin-bottom: 36px;
}

.provider-why-title span {
  color: #49969c;
}

.provider-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.provider-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.provider-why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #e6f7f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.provider-why-item h6 {
  font-size: 16px;
  font-weight: 300;
  color: #1b2840;
  margin: 0 0 6px;
}

.provider-why-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.provider-why-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.provider-why-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.provider-exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #49969c;
  color: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 74, 78, 0.35);
  z-index: 10;
}

.provider-exp-number {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.provider-exp-label {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  opacity: 0.85;
}

/* CTA Banner */
.provider-cta-banner {
  padding: 50px 0;
  background: url(../img/right-proc.png) no-repeat;
  background-size: cover;
  position: relative;
}

.provider-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.provider-cta-inner p {
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 0px;
}

a.provider-cta-btn {
  background: #fff;
  border-radius: 36px;
  color: #49969c;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
  text-decoration: none;
  white-space: nowrap;
}

a.provider-cta-btn:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

/* Testimonials */
.provider-testimonials {
  background: #f5f7f8;
  padding: 90px 0;
}

.provider-test-title {
  font-size: 40px;
  font-weight: 300;
  color: #1b2840;
  text-align: center;
  margin-bottom: 10px;
}

.provider-test-title span {
  color: #49969c;
}

.provider-test-sub {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.provider-test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.provider-test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.provider-test-stars {
  color: #f5a623;
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.provider-test-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.provider-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.provider-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6f7f6;
}

.provider-test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #1b2840;
}

.provider-test-author span {
  font-size: 12px;
  color: #49969c;
}

/* =================  why surgmatch section new  ============================ */

.more-patients {
  padding: 80px 0px;
  background: #fff;
}

.cm-right-card {
  background: linear-gradient(180deg, #cfd8df 0%, #c3cdd6 50%, #b9c5cf 100%);
}

.cm-card {
  flex: 1;
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s ease;
  height: 100%;
}

.cm-header h2 {
  font-size: 26px;
  color: #262f40;
  line-height: 26px;
}

.cm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.getmatched {
  display: flex;
  align-items: center;
  column-gap: 5px;
  background: #fff;
  border-radius: 10px;
  border: solid 1px #eee;
  padding: 9px;
  margin-bottom: 10px;
}

.high-internal svg {
  height: 30px;
  stroke: #49969c;
}

.getmatched-content h6 {
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  padding: 7px 0px;
  margin-bottom: 0px;
}

.getmatched-content p {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

.more-patient-img {
  position: relative;
}

.more-patient-img img {
  border-radius: 10px;
}

.match-care {
  position: absolute;
  bottom: 70px;
  background: #e0e8eb;
  border-radius: 10px;
  width: 200px;
  right: -25px;
  padding: 20px;
}

.match-care h6 {
  color: #49969c;
  font-size: 55px;
  font-weight: 300;
  margin-bottom: 0px;
  text-align: start;
}

.match-care p {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-align: start;
}

.cm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #49969c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cm-card.cm-right-card .cm-icon svg {
  stroke: #fff;
  width: 25px;
}

/* ============  How its work page css start here  ========================== */

.surg-hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../img/why-surgmatch-banner.png) no-repeat;
  height: 700px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.surg-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.surg-blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(121, 171, 185, 0.18) 0%,
    transparent 70%
  );
}

.surg-blob-2 {
  width: 340px;
  height: 340px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(27, 111, 200, 0.1) 0%,
    transparent 70%
  );
}

.surg-blob-3 {
  width: 220px;
  height: 220px;
  top: 30%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(121, 171, 185, 0.12) 0%,
    transparent 70%
  );
  animation: surgBlobFloat 7s ease-in-out infinite;
}

@keyframes surgBlobFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.surg-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(121, 171, 185, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 171, 185, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.surg-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.surg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.48px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  background: rgb(73 150 156 / 54%);
  border: 1px solid #49969c;
  padding: 5.6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.surg-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.surg-hero-title {
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 9999;
}

.surg-hero-title em {
  color: #49969c;
  font-style: normal;
}

.surg-hero-sub {
  color: #fff;
  margin: 0px auto 20px;
  font-weight: 400;
  font-size: 16px;
}

.surg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.surg-btn-primary {
  background: #fff;
  border-radius: 36px;
  color: #49969c;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
}

.surg-btn-primary:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

.surg-btn-outline {
  background: #49969c;
  border-radius: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 10px 40px;
  border: solid 1px #49969c;
  transition: 0.3s ease-in all;
}

.surg-btn-outline:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

.surg-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.surg-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--surg-text-2);
  background: #fff;
  border: 1px solid var(--surg-gray-200);
  padding: 4.8px 12.8px;
  border-radius: 99px;
  box-shadow: var(--surg-sh-sm);
}

.surg-chip-dot {
  width: 6px;
  height: 6px;
  background: var(--surg-green);
  border-radius: 50%;
}

.surg-hero-illustration {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-top: 80px;
  margin-left: 6px;
}

.surg-hi-circle-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: surgBlobFloat 8s ease-in-out infinite;
}

.surg-hi-circle-mid {
  width: 82%;
  height: 82%;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--surg-sh-md);
}

.surg-hi-center-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #76f0e7, #086f6b);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--surg-sh-accent);
}

.surg-hi-float {
  position: absolute;
  background: #fff;
  border-radius: var(--surg-r-md);
  padding: 8px 12px;
  box-shadow: var(--surg-sh-md);
  border: 1px solid var(--surg-gray-200);
  display: flex;
  align-items: center;
  gap: 9.6px;
  font-size: 13px;
  font-weight: 300;
  color: #262f40;
  white-space: nowrap;
  animation: surgBlobFloat 6s ease-in-out infinite;
  border-radius: 20px;
}

.surg-hi-float:nth-child(2) {
  top: 8%;
  left: -2%;
  animation-delay: 1s;
}

.surg-hi-float:nth-child(3) {
  top: 44%;
  right: -10%;
  animation-delay: 2.5s;
}

.surg-hi-float:nth-child(4) {
  bottom: 10%;
  left: 2%;
  animation-delay: 1.8s;
}

.surg-hif-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.6px;
}

.why-surgmatch-diffrent {
  background: #fff;
  padding: 80px 0px;
}

.why-surgmatch-diffrent .row {
  align-items: stretch;
}

.why-surgmatch-diffrent .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.why-surgmatch-diffrent .surgecal-decsion {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.why-surgmatch-diffrent .cm-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.why-surgmatch-diffrent .cm-box {
  flex: 1 1 auto;
}

/* CARD */
.cm-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s ease;
  height: 100%;
}

.cm-card:hover {
  transform: translateY(-6px);
}

/* LEFT CARD STYLE */
.cm-left-card {
  background: linear-gradient(135deg, #f1f6f6 0%, #f1f6f5 100%);
}

/* RIGHT CARD STYLE */
.cm-right-card {
  background: linear-gradient(135deg, #e9f3f3 0%, #e3efef 40%, #e1efef 100%);
}

/* HEADER */
.cm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.cm-header h2 {
  color: #262f40;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

/* ICON */
.cm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #49969c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* SUBTEXT */
.cm-subtext {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
  padding: 10px 0px;
}

/* INNER BOX */
.cm-box {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  border: 1px solid #eee;
}

.cm-box h4 {
  padding: 0px;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #262f40;
  margin-bottom: 5px;
}

/* LIST */
.cm-box ul {
  list-style: none;
  padding: 0;
}

.cm-box ul li {
  font-size: 16px;
  color: #525252;
  padding: 8px 0;
  position: relative;
  padding-left: 0px;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.cm-card.cm-right-card ul li svg {
  height: 22px;
  stroke: #49969c;
}

.cm-box ul li:last-child {
  border-bottom: none;
}

.cm-card.cm-left-card ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.cm-card.cm-left-card ul li i {
  border: solid 1px #f31612;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #f31612;
}

.cm-card.cm-left-card .cm-icon {
  background: #f31612;
  color: #f31612;
}

.why-surgmatch-diffrent {
  padding: 50px 0px;
}

.why-surgmatch-diffrent .howtosurg-works h2 {
  margin-bottom: 70px;
}

.cm-card.cm-left-card .cm-icon svg {
  stroke: #fff;
  /* font-size: 12px; */
  width: 25px;
}

.cm-card.cm-right-card .cm-icon svg {
  stroke: #fff;
  width: 25px;
}

.login-doctor {
  display: flex;
  align-items: center;
  background: #fdfdfd;
}

.login-img {
  width: 40%;
  position: relative;
}

.login-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(73, 150, 156, 0) 0%,
    /* top light */ rgb(73 150 156 / 42%) 50%,
    /* mid */ rgb(73 150 156 / 0%) 100% /* bottom dark */
  );
}

.login-img img {
  max-width: 100%;
  height: 100vh;
  object-fit: cover;
  background-position: center;
  object-position: center;
}

.login-account {
  width: 60%;
  padding: 40px;
  max-width: px;
  margin: 0 auto;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* width: 100%; */
}

.login-account::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/login-trusted-bg.png);
  bottom: 0px;
  left: 0px;
  contain-intrinsic-block-size: auto 100px;
  height: 100%;
  pointer-events: none;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  top: 0px;
  background-size: cover;
  opacity: 0.6;
}

.login-box {
  width: 500px;
  border-radius: 20px;
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  padding: 25px;
  z-index: 99;
  border: solid 1px #49969c52;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

p.dont-have {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
}

p.dont-have::before,
p.dont-have::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.signup-doctor {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.login-doctor.as-signup .login-box {
  width: 80%;
}

.patient-details-new {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.patient-signup {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(47, 143, 157, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-signup i {
  color: #49969c;
  font-size: 22px;
}

.have-account {
  display: flex;
  align-items: center;
  column-gap: 20px;
  justify-content: center;
}

.have-account p {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.have-account p span i {
  color: #49969c;
  font-size: 14px;
}

/* why surgmatch page css start here */

.whysurgmatch-banner {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../img/why-surgmatch-banner-1.png) no-repeat;
  height: 700px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.stats-bar {
  background: #203656;
  padding: 28px 60px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid #e5e7eb;
  padding-left: 9px;
  padding-right: 9px;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

h1.smarter-decsion {
  font-size: 52px;
  line-height: 56px;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(63, 189, 176, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #1d5973;
}

.stat-icon i {
  color: #3fbdb0;
  font-size: 17px;
}

.stat-num {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #8fa8c4;
  font-weight: 300;
  margin-top: 2px;
}

.crictical-life {
  background: #f8f8f8;
  padding: 70px 0px;
}

.custom-card {
  box-shadow: 0px 2px 7px 0px #0000001a;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: relative;
  z-index: 9;
  height: 100%;
  height: 100%;
  transition: 0.3s ease-in all;
}

.custom-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease-in all;
}

/* Icon box */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Colors */
.card-icon.blue {
  background: #1d59732e;
  color: #49969c;
}

.card-icon.purple {
  background: #e5e9f4;
  color: #9696d2;
}

.card-icon.teal {
  background: rgba(0, 180, 160, 0.1);
  color: #49969c;
}

/* Icon image */
.card-icon img {
  width: 26px;
  height: 26px;
}

/* Title */
.custom-card h3 {
  color: #262f40;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 15px 0px;
  margin-bottom: 0px;
}

/* Text */
.custom-card p {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

/* SECTION */
.info-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
}

.info-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/why-surgmatch-better.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
  left: 0px;
  background-position: right;
}

/* LEFT SIDE */
.left-content .tag {
  background: #dbeff2;
  color: #49969c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.left-content h2 {
  font-size: 40px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.left-content h2 span {
  color: #49969c;
}

.left-content .desc {
  color: #666;
  margin-bottom: 30px;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
  box-shadow: 0px 2px 7px 0px #0000001a;
  transition: 0.3s ease-in all;
  border-bottom: solid 2px transparent;
  border-left: solid 2px #49969c;
  cursor: pointer;
}

.info-item:hover {
  border-bottom: solid 2px #49969c;
  transform: translateY(-10px);
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 160, 0.1);
  color: #49969c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 21px;
}

.info-item h5 {
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  padding: 5px 0px;
  margin-bottom: 0px;
}

.info-item p {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: start;
}

/* RIGHT CARD */
.right-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 9;
}

.card-image img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
}

/* CARD CONTENT */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-content p {
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

/* BUTTONS */
.right-card .btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.main-btn {
  background: #49969c;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
}

.dot-btn {
  width: 61px;
  height: 38px;
  border-radius: 35px;
  border: none;
  background: #e5f0f2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
  font-size: 21px;
}

.reduce-anxiety {
  width: calc(100% - 65px);
}

.confidence-hero {
  background: linear-gradient(
    180deg,
    #dfebf000 0%,
    #eaf3f5 60%,
    #49969c47 100%
  );
  padding: 70px 0px;
}

.confidence-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.confidence-box h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 76px;
  color: #262f40;
  margin-bottom: 12px;
}

.confidence-box h2 span {
  color: #49969c;
}

.confidence-box p {
  padding: 0px 0px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
}

.confidence-buttons {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.confidence-buttons button {
  background: #49969c;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.confidence-buttons button:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in all;
  background: #49969c !important;
  color: #fff;
}

.card-image {
  width: 100%;
}

button.works-dots {
  border: solid 1px #49969c;
  background: #fff;
  color: #49969c;
}

.login-icons {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(47, 143, 157, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.login-icons i {
  color: #49969c;
  font-size: 22px;
}

.as-signup .submit {
  width: 300px;
  margin: 4px auto;
}

.as-signup .submit button {
  width: 100%;
}

.as-signup p.dont-have::before {
  width: 46%;
}

.as-signup p.dont-have::after {
  width: 46%;
}

.provider-signup-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.patient-details-new-journey a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #49969c;
  margin-bottom: 0px;
  font-size: 14px;
  text-decoration: none;
}

/* =========================================================
   Reusable tooltip (used by <Tooltip /> component)
   ========================================================= */
.sm-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sm-tooltip::before,
.sm-tooltip::after {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 99999;
}

.sm-tooltip::before {
  content: attr(data-tooltip);
  background: #49969c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.25);
  letter-spacing: 0.2px;
  max-width: 240px;
}

.sm-tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
}

/* TOP (default) */
.sm-tooltip-top::before {
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
}

.sm-tooltip-top::after {
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-top-color: #49969c;
}

/* BOTTOM */
.sm-tooltip-bottom::before {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}

.sm-tooltip-bottom::after {
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border-bottom-color: #49969c;
}

/* LEFT */
.sm-tooltip-left::before {
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
}

.sm-tooltip-left::after {
  right: calc(100% + 3px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  border-left-color: #49969c;
}

/* RIGHT */
.sm-tooltip-right::before {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
}

.sm-tooltip-right::after {
  left: calc(100% + 3px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  border-right-color: #49969c;
}

/* Show on hover/focus-within of wrapper */
.sm-tooltip:hover::before,
.sm-tooltip:hover::after,
.sm-tooltip:focus-within::before,
.sm-tooltip:focus-within::after {
  opacity: 1;
  visibility: visible;
}

.sm-tooltip-top:hover::before,
.sm-tooltip-top:focus-within::before {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-top:hover::after,
.sm-tooltip-top:focus-within::after {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-bottom:hover::before,
.sm-tooltip-bottom:focus-within::before {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-bottom:hover::after,
.sm-tooltip-bottom:focus-within::after {
  transform: translateX(-50%) translateY(0);
}

.sm-tooltip-left:hover::before,
.sm-tooltip-left:focus-within::before,
.sm-tooltip-left:hover::after,
.sm-tooltip-left:focus-within::after {
  transform: translateY(-50%) translateX(0);
}

.sm-tooltip-right:hover::before,
.sm-tooltip-right:focus-within::before,
.sm-tooltip-right:hover::after,
.sm-tooltip-right:focus-within::after {
  transform: translateY(-50%) translateX(0);
}

/* Disable tooltip on touch devices to prevent stuck bubbles */
@media (hover: none) {
  .sm-tooltip::before,
  .sm-tooltip::after {
    display: none;
  }
}

.edit-btn.sm-tooltip,
.remove-btn.sm-tooltip,
.upload-doctor-profile.sm-tooltip,
.custom-modal-overlay button.close-btn.sm-tooltip,
.rd-modal-box button.close-btn.sm-tooltip {
  position: absolute;
}

.pt-card:has(.sm-tooltip:hover),
.pt-card:has(.sm-tooltip:focus-within),
.device-details:has(.sm-tooltip:hover),
.device-details:has(.sm-tooltip:focus-within),
.file-preview-item:has(.sm-tooltip:hover),
.file-preview-item:has(.sm-tooltip:focus-within),
.sidebar:has(.sm-tooltip:hover),
.sidebar:has(.sm-tooltip:focus-within),
.sidebar .menu-bar:has(.sm-tooltip:hover),
.sidebar .menu-bar:has(.sm-tooltip:focus-within),
.pt-shell:has(.pt-sidebar .sm-tooltip:hover),
.pt-shell:has(.pt-sidebar .sm-tooltip:focus-within),
.pt-shell__sidebar:has(.sm-tooltip:hover),
.pt-shell__sidebar:has(.sm-tooltip:focus-within),
.pt-sidebar:has(.sm-tooltip:hover),
.pt-sidebar:has(.sm-tooltip:focus-within),
.pt-sidebar__menu-bar:has(.sm-tooltip:hover),
.pt-sidebar__menu-bar:has(.sm-tooltip:focus-within) {
  overflow: visible;
}

/* STATS ROW */
.sm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.sm-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  /* box-shadow: 0px 2px 7px 0px #0000001a; */
  border: 1px solid #e5eeed;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

.sm-stat-card:hover {
  transform: translateY(-10px);
}

.sm-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
}

.sm-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-stat-icon i {
  font-size: 18px;
  color: rgb(47, 143, 157);
}

.sm-stat-icon.teal {
  background: #e8f7f6;
}

.sm-stat-icon.purple {
  background: #ede9fe;
}

.sm-stat-icon.blue {
  background: #eff6ff;
}

.sm-stat-label {
  font-size: 14px;
  color: #525252;
  font-weight: 500;
  margin-bottom: 2px;
}

.sm-stat-value {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.2;
}

.sm-stat-sub {
  font-size: 12px;
  color: #262f40;
  margin-top: 2px;
}

.sm-stat-pending {
  color: #f4a261;
  font-weight: 300;
  font-size: 18px;
}

.sm-stat-progress {
  height: 5px;
  background: #e5eeed;
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.sm-stat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 99px;
}

.sm-stat-arrow {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e5eeed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525252;
}

/* ===== WELCOME BANNER (Admin-style hero) ===== */
.sm-welcome-banner {
  position: relative;
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #5bbfb6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 22px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
}

.sm-welcome-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sm-welcome-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.sm-welcome-bubbles .b1 {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.1);
}

.sm-welcome-bubbles .b2 {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.sm-welcome-bubbles .b3 {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.1);
}

.sm-welcome-bubbles .b4 {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.sm-welcome-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sm-welcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

.sm-welcome-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.sm-welcome-title {
  margin: 14px 0 6px;
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
}

.sm-welcome-sub {
  margin: 0 0 0px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.sm-welcome-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sm-welcome-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.sm-welcome-btn.primary {
  background: #ffffff;
  color: #49969c;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.15);
}

.sm-welcome-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.22);
}

.sm-welcome-btn.ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.sm-welcome-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* ===== STAT CARD V2 (Admin-style stat cards) ===== */
.sm-stat-card.sm-stat-card-v2 {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 18px 18px 16px;
  cursor: pointer;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.sm-stat-icon.orange {
  background: #fef0e6;
}

.sm-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.2px;
}

.sm-stat-badge svg {
  flex-shrink: 0;
}

.sm-stat-badge.Approved {
  background: #e6f7ee;
  color: #10b981;
}

.sm-stat-badge.Pending {
  background: #fff1e3;
  color: #f4a261;
}

.sm-stat-badge.Rejected {
  background: #fde8e8;
  color: #ef4444;
}

.sm-stat-badge.ok {
  background: #e6f7ee;
  color: #10b981;
}

.sm-stat-badge.warn {
  background: #fef0e6;
  color: rgb(244, 162, 97);
}

.sm-stat-badge.danger {
  background: #fde8e8;
  color: #ef4444;
}

.sm-stat-badge.muted {
  background: #f1f3f5;
  color: #525252;
}

.sm-stat-card.sm-stat-card-v2 .sm-stat-label {
  font-size: 13px;
  color: #525252;
  font-weight: 500;
  margin: 6px 0 0;
}

.sm-stat-value-lg {
  font-size: 24px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.1;
  margin-top: 2px;
}

.sm-stat-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.sm-stat-link {
  font-size: 12px;
  font-weight: 500;
  color: #49969c;
  white-space: nowrap;
}

.sm-stat-card.sm-stat-card-v2:hover .sm-stat-link {
  text-decoration: underline;
}

.sm-mini-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  width: 70px;
  opacity: 0.85;
}

.sm-mini-bars span {
  flex: 1;
  border-radius: 2px;
  min-height: 4px;
  transition: opacity 0.25s ease;
}

.sm-stat-card.sm-stat-card-v2:hover .sm-mini-bars {
  opacity: 1;
}

/* BOTTOM GRID */
.sm-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 18px;
}

.sm-section-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  /* box-shadow: 0px 2px 7px 0px #0000001a; */
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  border: 1px solid #e5eeed;
}

.sm-section-card:hover {
  transform: translateY(-10px);
}

.sm-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
}

.sm-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sm-section-title {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
}

.sm-section-sub {
  font-size: 12px;
  color: #525252;
  margin-bottom: 18px;
}

/* QUICK ACTIONS */
.sm-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sm-qa-item {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.sm-qa-item:hover {
  background: #e6f4f3;
  border-color: #bde6e2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
}

.sm-qa-item.full {
  grid-column: 1 / -1;
}

.sm-qa-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-qa-icon.green-bg {
  background: #e8f7f6;
}

.sm-qa-icon.purple-bg {
  background: #ede9fe;
}

.sm-qa-icon.orange-bg {
  background: #fef3c7;
}

.sm-qa-icon.blue-bg {
  background: #eff6ff;
}

.sm-qa-icon.teal-bg {
  background: #e6f4f3;
}

.sm-qa-label {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.sm-qa-desc {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
}

.sm-qa-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #525252;
}

span.sm-qa-arrow svg {
  height: 20px;
  width: 20px;
}

/* RECENT ACTIVITY */
.sm-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* .sm-activity-list>*:last-child .pt-activity-item::before,
.sm-activity-list>*:last-child .sm-activity-item::before {
  display: none !important;
} */

.sm-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.sm-activity-item:last-child {
  border-bottom: none;
}

.sm-activity-item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 52px;
  bottom: -1px;
  width: 1.5px;
  background: #e5e7eb;
}

.sm-activity-item:last-child::before {
  display: none;
}

.sm-act-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  background: #e8f7f6;
}

.sm-qa-label {
  font-size: 15px;
  font-weight: 500;
  color: #262f40;
}

.sm-act-sub {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
}

.sm-act-time {
  font-size: 11px;
  color: #525252;
  margin-left: auto;
  flex-shrink: 0;
}

.sm-view-all-btn {
  width: 100%;
  margin-top: 0px;
  padding: 6px 14px;
  background: transparent;
  border: 1.5px solid #49969c;
  border-radius: 100px;
  color: #49969c;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

.sm-view-all-btn:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

/* PROFILE COMPLETION */
.sm-completion-pct {
  font-size: 15px;
  font-weight: 300;
  color: #49969c;
  margin-left: auto;
}

.sm-comp-bar {
  height: 7px;
  background: #e5e7eb;
  border-radius: 99px;
  margin: 12px 0 6px;
  overflow: hidden;
}

.sm-comp-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sm-comp-sub {
  font-size: 12px;
  color: #525252;
  margin-bottom: 16px;
}

.sm-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.sm-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.sm-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-check-circle.done {
  background: #22c55e;
}

.sm-check-circle.pending-c {
  background: #fff1e3;
  border: 2px solid #f4a261;
}

.sm-check-circle.empty-c {
  background: transparent;
  border: 2px solid #e5e7eb;
}

.sm-clipboard-deco {
  display: flex;
  justify-content: flex-end;
  margin-top: 0px;
  margin-bottom: 8px;
}

/* HELPFUL TIPS */
.sm-tips-card {
  background: #e6f4f3;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.sm-tips-card:hover {
  background: #bde6e2;
}

.sm-tips-icon {
  width: 36px;
  height: 36px;
  background: #49969c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-tips-title {
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.sm-tips-sub {
  font-size: 11px;
  color: #525252;
  margin-top: 2px;
}

.sm-tips-arrow {
  margin-left: auto;
  color: #525252;
  flex-shrink: 0;
}

.blogs-section {
  background: #fff;
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
}

.blogs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/login-trusted-bg.png);
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.blogs-section > * {
  position: relative;
  z-index: 1;
}

.blogs-section .howtosurg-works p {
  margin-bottom: 0px;
  padding-bottom: 47px;
}

/* ===== Premium Blog Carousel Controls ===== */
.blog-swiper-wrapper {
  position: relative;
  padding: 10px 50px 30px;
}

.blog-swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
}

.blog-swiper-wrapper .swiper-slide > .blog-card {
  width: 100%;
}

/* Flanking Nav Buttons (Left & Right Sides) */
.blog-nav-btn {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #49969c;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 4px 12px rgba(73, 150, 156, 0.18); */
  flex-shrink: 0;
}

.blog-nav-btn.blog-prev-btn {
  left: 0;
}

.blog-nav-btn.blog-next-btn {
  right: 0;
}

.blog-nav-btn:hover {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  /* box-shadow: 0 6px 18px rgba(73, 150, 156, 0.35);
  transform: scale(1.1); */
}

.blog-nav-btn:active {
  transform: scale(0.95);
}

/* Pagination Dots at Bottom */
.blog-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative !important;
  bottom: 0 !important;
  width: 100% !important;
}

.blog-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 0.8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
  margin: 0 !important;
  cursor: pointer;
}

.blog-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #49969c;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(73, 150, 156, 0.3);
}

@media (max-width: 576px) {
  .blog-swiper-wrapper {
    padding: 10px 12px 30px;
  }

  .blog-nav-btn.blog-prev-btn {
    left: -6px;
  }

  .blog-nav-btn.blog-next-btn {
    right: -6px;
  }
}

/* ===== Blog Card ===== */
.blog-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Bottom border accent */
.blog-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.blog-card--healthcare::after {
  background: linear-gradient(90deg, #49969c, #0d9488);
}

.blog-card--iot::after {
  background: linear-gradient(90deg, #2563eb, #1a2f5a);
}

.blog-card--fintech::after {
  background: linear-gradient(90deg, #7c3aed, #7c3aed);
}

/* ===== Card Image ===== */
.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  /* Responsive band; image always fills via absolute + object-fit */
  height: clamp(200px, 30vw, 240px);
  height: 150px;
  overflow: hidden;
  background: #f1f5f5;
  flex-shrink: 0;
}

.blog-card-img-wrapper img.blog-card-thumb,
.blog-card-img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-wrapper img.blog-card-thumb,
.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

/* Category badge on image */
.blog-card-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.blog-card--healthcare .blog-card-badge {
  background: #49969c;
}

.blog-card--iot .blog-card-badge {
  background: #1a2f5a;
}

.blog-card--fintech .blog-card-badge {
  background: #7c3aed;
}

/* Circular icon on image */
.blog-card-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.blog-card--healthcare .blog-card-icon {
  background: #49969c;
}

.blog-card--iot .blog-card-icon {
  background: #1a2f5a;
}

.blog-card--fintech .blog-card-icon {
  background: #7c3aed;
}

/* ===== Card Body ===== */
.blog-card-body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row */
.blog-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.blog-card-date {
  font-size: 13px;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date i {
  font-size: 13px;
}

.blog-card--healthcare .blog-card-date i {
  color: #49969c;
}

.blog-card--iot .blog-card-date i {
  color: #2563eb;
}

.blog-card--fintech .blog-card-date i {
  color: #7c3aed;
}

.blog-card-date .dot-sep {
  color: #9ca3af;
  margin: 0 2px;
}

.blog-card-author {
  font-size: 13px;
  font-weight: 400;
  color: #49969c;
}

/* Title */
.blog-card-title {
  color: #1f2937;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 12px;
}

/* Excerpt */
.blog-card-excerpt {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 16px;
  flex: 1;
}

/* Read More */
.blog-read-more {
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
  align-self: flex-start;
}

.blog-read-more i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.blog-card--healthcare .blog-read-more {
  color: #0d9488;
}

.blog-card--healthcare .blog-read-more:hover {
  color: #49969c;
  gap: 12px;
}

.blog-card--iot .blog-read-more {
  color: #1a2f5a;
}

.blog-card--iot .blog-read-more:hover {
  color: #2563eb;
  gap: 12px;
}

.blog-card--fintech .blog-read-more {
  color: #7c3aed;
}

.blog-card--fintech .blog-read-more:hover {
  color: #7c3aed;
  gap: 12px;
}

.blogs-section.all-blogs-page {
  padding: 120px 0px 90px;
}

/* Vertical spacing between wrapped blog cards */
.blogs-section .nedts {
  margin-bottom: 28px;
}

/* =====================================================================
   Blog detail page (dynamic sections from API)
   ===================================================================== */
.blog-detail-page {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 80px;
}

.blog-detail-page .blog-detail-body {
  padding-top: 32px;
}

.blog-detail-page .blog-section + .blog-section {
  margin-top: 4px;
}

.blog-detail-page .blog-section--hero {
  margin-bottom: 0;
}

.blog-detail-page .blog-side-card + .blog-side-card {
  margin-top: 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #49969c;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(73, 150, 156, 0.08);
  transition:
    background 0.2s ease,
    gap 0.2s ease,
    color 0.2s ease;
}

.blog-back-link:hover {
  background: rgba(73, 150, 156, 0.16);
  color: #0d9488;
  gap: 12px;
}

.blog-back-link i {
  font-size: 12px;
}

/* ----- Sidebar TOC ("In this article") ----- */
.blog-toc-list .blog-toc-item button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 0;
  text-align: left;
  cursor: pointer;
  color: #0f172a;
  transition: color 0.18s ease;
}

.blog-toc-list .blog-toc-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: #ffffff;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

.blog-toc-list .blog-toc-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.blog-toc-list .blog-toc-item button:hover .blog-toc-text,
.blog-toc-list .blog-toc-item.is-active button .blog-toc-text {
  color: var(--toc-accent, #0f7a82);
}

.blog-toc-list .blog-toc-item button:hover .blog-toc-num,
.blog-toc-list .blog-toc-item.is-active button .blog-toc-num {
  border-color: var(--toc-accent, #0f7a82);
  color: var(--toc-accent, #0f7a82);
  background: rgba(73, 150, 156, 0.08);
}

.blog-toc-list .blog-toc-item:focus-within button .blog-toc-num {
  outline: 2px solid rgba(73, 150, 156, 0.35);
  outline-offset: 2px;
}

/* ----- Sidebar share buttons ----- */
.blog-share-card .blog-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.blog-share-btn:hover {
  background: #49969c !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(73, 150, 156, 0.25);
}

.blog-share-btn i {
  font-size: 15px;
  line-height: 1;
}

/* =====================================================================
   Blog skeleton loaders (themed #49969C)
   ===================================================================== */
@keyframes sm-shimmer {
  0% {
    background-position: -480px 0;
  }

  100% {
    background-position: 480px 0;
  }
}

@keyframes sm-fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sm-fadein {
  animation: sm-fadein 0.35s ease-out both;
}

.sm-skel {
  display: block;
  background: linear-gradient(
    90deg,
    #eef5f6 0%,
    rgba(73, 150, 156, 0.18) 50%,
    #eef5f6 100%
  );
  background-size: 480px 100%;
  background-repeat: no-repeat;
  animation: sm-shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.sm-skel--circle {
  border-radius: 50%;
}

.sm-skel--pulse {
  animation:
    sm-shimmer 1.6s infinite linear,
    sm-pulse 2s infinite ease-in-out;
}

@keyframes sm-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Blog card skeleton */
.blog-card-skeleton {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-skeleton::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #49969c, #0d9488);
  opacity: 0.5;
}

.blog-card-skeleton__img {
  width: 100%;
  min-height: 200px;
  display: block;
}

.blog-card-skeleton__body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Blog detail skeletons */
.blog-detail-skeleton__hero {
  background: linear-gradient(135deg, #0a1f44 0%, #0f2a5e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.blog-detail-skeleton__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 200px at 20% 20%,
      rgba(73, 150, 156, 0.18),
      transparent 70%
    ),
    radial-gradient(
      500px 200px at 80% 80%,
      rgba(73, 150, 156, 0.12),
      transparent 70%
    );
  pointer-events: none;
}

.blog-detail-skeleton__hero .sm-skel {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(73, 150, 156, 0.45) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  background-size: 480px 100%;
  background-repeat: no-repeat;
  animation: sm-shimmer 1.4s infinite linear;
}

.blog-detail-skeleton__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}

.blog-detail-skeleton__side {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

/* =====================================================================
   Assessment chat (ChatGPT-style) ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â SurgMatch theme
   ===================================================================== */
.chat-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  margin-top: 0;
  background: #f4f8f9;
  position: relative;
  overflow: hidden;
}

.chat-shell--loading {
  align-items: center;
  justify-content: center;
}

.chat-shell__loader {
  color: #49969c;
  font-weight: 500;
}

/* ---------- Sidebar ---------- */
.chat-sidebar {
  width: 290px;
  flex-shrink: 0;
  background: #f7f7f8;
  color: #0d2e43;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e7eaec;
  transition:
    width 0.25s ease,
    transform 0.25s ease,
    opacity 0.2s ease;
  z-index: 30;
  overflow: hidden;
}

/* Collapsed state ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â slim icon rail */
.chat-sidebar.is-collapsed {
  width: 60px;
}

.chat-sidebar.is-collapsed .chat-sidebar__brand-logo,
.chat-sidebar.is-collapsed .chat-sidebar__nav-item span,
.chat-sidebar.is-collapsed .chat-sidebar__nav-item-arrow,
.chat-sidebar.is-collapsed .chat-sidebar__search,
.chat-sidebar.is-collapsed .chat-sidebar__context,
.chat-sidebar.is-collapsed .chat-sidebar__history,
.chat-sidebar.is-collapsed .chat-sidebar__action span {
  display: none;
}

.chat-sidebar.is-collapsed .chat-sidebar__top {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 8px;
  gap: 4px;
}

.chat-sidebar.is-collapsed .chat-sidebar__brand {
  margin: 0;
  padding: 0;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav {
  padding: 8px 6px;
  align-items: center;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav-item {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}

.chat-sidebar.is-collapsed .chat-sidebar__nav-item i {
  font-size: 18px;
  margin: 0;
}

.chat-sidebar.is-collapsed .chat-sidebar__footer {
  padding: 10px 6px;
  align-items: center;
}

.chat-sidebar.is-collapsed .chat-sidebar__action {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}

.chat-sidebar.is-collapsed .chat-sidebar__action i {
  margin: 0;
  font-size: 17px;
}

/* ---- Top: brand + collapse ---- */
.chat-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 14px 8px;
}

.chat-sidebar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  text-decoration: none;
  border-radius: 8px;
  padding: 4px 6px;
  margin-left: -6px;
  transition:
    opacity 0.15s ease,
    background 0.15s ease;
}

.chat-sidebar__brand:hover {
  opacity: 0.85;
}

.chat-sidebar__brand-logo {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.chat-sidebar__collapse {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #6b7c83;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.chat-sidebar__collapse:hover {
  background: rgba(73, 150, 156, 0.12);
  color: #0d2e43;
}

/* ---- Action nav ---- */
.chat-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 8px 4px;
}

.chat-sidebar__nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #0d2e43;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.chat-sidebar__nav-item i {
  font-size: 17px;
  color: #49969c;
  flex-shrink: 0;
  transition: color 0.18s ease;
}

.chat-sidebar__nav-item:hover {
  background: rgba(73, 150, 156, 0.1);
  color: #0d2e43;
}

.chat-sidebar__nav-item:hover i {
  color: #2f7177;
}

.chat-sidebar__nav-item.is-active {
  background: rgba(73, 150, 156, 0.16);
  color: #0d2e43;
}

.chat-sidebar__nav-item.is-active i {
  color: #2f7177;
}

.chat-sidebar__nav-item span {
  flex: 1;
}

.chat-sidebar__nav-item-arrow {
  font-size: 14px !important;
  opacity: 0.6;
}

/* ---- Search input ---- */
.chat-sidebar__search {
  margin: 6px 12px 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e7eaec;
  border-radius: 10px;
}

.chat-sidebar__search i {
  font-size: 15px;
  color: #6b7c83;
}

.chat-sidebar__search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #0d2e43;
  font-size: 13px;
}

.chat-sidebar__search input::placeholder {
  color: #9aa9af;
}

.chat-sidebar__context {
  margin: 8px 12px 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e7eaec;
}

.chat-sidebar__context-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f7177;
  margin-bottom: 6px;
  font-weight: 300;
}

.chat-sidebar__context-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-sidebar__context-body strong {
  font-size: 14px;
  font-weight: 300;
  color: #0d2e43;
}

.chat-sidebar__context-body span {
  font-size: 12px;
  color: #6b7c83;
}

.chat-sidebar__history {
  flex: 1;
  overflow-y: auto;
  padding: 14px 8px 8px;
}

.chat-sidebar__history::-webkit-scrollbar {
  width: 6px;
}

.chat-sidebar__history::-webkit-scrollbar-thumb {
  background: #d6dbde;
  border-radius: 3px;
}

.chat-history-section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #273047;
  padding: 6px 14px 8px;
  font-weight: 300;
}

.chat-history-group + .chat-history-group {
  margin-top: 12px;
}

.chat-history-group__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a979c;
  padding: 8px 14px 4px;
  font-weight: 500;
}

.chat-history-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chat-history-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #2c4453;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  position: relative;
  margin-bottom: 1px;
}

.chat-history-item:hover {
  background: rgba(73, 150, 156, 0.1);
  color: #0d2e43;
}

.chat-history-item.is-active {
  background: rgba(73, 150, 156, 0.16);
  color: #0d2e43;
}

.chat-history-item__title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

.chat-history-item.is-active .chat-history-item__title {
  font-weight: 500;
}

.chat-history-item__delete {
  background: transparent;
  border: none;
  color: #6b7c83;
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.chat-history-item:hover .chat-history-item__delete,
.chat-history-item.is-active .chat-history-item__delete {
  opacity: 1;
}

.chat-history-item__delete:hover {
  color: #d24747;
  background: rgba(210, 71, 71, 0.1);
}

.chat-sidebar__empty {
  padding: 24px 12px;
  font-size: 13px;
  color: #8a979c;
  text-align: center;
}

.chat-sidebar__footer {
  border-top: 1px solid #e7eaec;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-sidebar__action {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #2c4453;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.chat-sidebar__action:hover {
  background: rgba(73, 150, 156, 0.12);
  color: #0d2e43;
}

.chat-sidebar__action i {
  font-size: 15px;
  color: #6b7c83;
}

.chat-sidebar__action:hover i {
  color: #2f7177;
}

.chat-sidebar__action--danger:hover {
  background: rgba(210, 71, 71, 0.1);
  color: #d24747;
}

.chat-sidebar__action--danger:hover i {
  color: #d24747;
}

.chat-sidebar__toggle {
  display: none;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 40;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  background: #ffffff;
  color: #0d2e43;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(13, 46, 67, 0.12);
}

.chat-sidebar__overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 67, 0.55);
  z-index: 25;
  backdrop-filter: blur(2px);
}

/* ---------- Main panel ---------- */
.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(33, 211, 241, 0.07),
      transparent 40%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(73, 150, 156, 0.06),
      transparent 40%
    ),
    #ffffff;
  min-width: 0;
  position: relative;
}

.chat-main__messages {
  flex: 1;
  overflow-y: auto;
  padding: 36px 24px 28px;
  background: transparent;
}

.chat-main__messages::-webkit-scrollbar {
  width: 8px;
}

.chat-main__messages::-webkit-scrollbar-thumb {
  background: rgba(73, 150, 156, 0.35);
  border-radius: 4px;
}

/* ---------- Message rows ---------- */
.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto 22px;
  max-width: 880px;
}

.chat-msg--subscribe {
  margin: 0px;
}

.chat-msg--user {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.chat-msg__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
}

.chat-msg__avatar--bot {
  background: #e3f1ef;
  border: 1px solid #c6e1dd;
  padding: 4px;
  overflow: hidden;
}

.chat-msg__avatar--bot img {
  object-fit: contain;
  filter: none;
  max-width: 12px;
}

.chat-msg__avatar--user {
  background: #49969c;
  color: #fff;
  font-size: 17px;
}

.chat-msg__avatar--user i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-msg__bubble {
  background: transparent;
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg--user .chat-msg__bubble {
  align-items: flex-end;
}

.chat-msg__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #0d2e43;
  background: #e3f1ef;
  border: none;
  padding: 14px 18px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-msg--user .chat-msg__text {
  background: #3a8b91;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  border-top-right-radius: 4px;
  padding: 14px 18px;
}

.chat-msg__text--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-left: 3px solid #dc2626;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.chat-msg__error-icon {
  font-size: 16px;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-msg__bubble--typing {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 16px 18px;
  background: #e3f1ef;
  border: none;
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: auto;
  max-width: max-content;
}

.chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49969c;
  display: inline-block;
  animation: chat-typing 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-typing {
  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- Option chips ---------- */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chat-msg--user .chat-options {
  background: #3a8b91;
  border: none;
  padding: 12px 14px;
  border-radius: 16px;
  border-top-right-radius: 4px;
}

.chat-option {
  background: #ffffff;
  color: #49969c;
  border: 1px solid #49969c;
  border-radius: 36px;
  padding: 7px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  white-space: nowrap;
}

.chat-option:hover:not(:disabled) {
  background: #49969c;
  border-color: #49969c;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option.is-selected {
  background: #49969c;
  border-color: #49969c;
  color: #ffffff;
}

.chat-option.is-selected:hover:not(:disabled) {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option.is-locked,
.chat-option:disabled {
  cursor: default;
  opacity: 0.92;
  transform: none;
}

.chat-msg--user .chat-option {
  cursor: default;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 500;
}

.chat-msg--user .chat-option:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.chat-option-submit {
  background: #49969c;
  color: #ffffff;
  border: 1px solid #49969c;
  border-radius: 36px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-option-submit::after {
  /* content: "Ã¢â€ â€™"; */
  font-size: 15px;
  line-height: 1;
}

.chat-option-submit:hover:not(:disabled) {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-option-submit:disabled {
  background: #ffffff;
  color: #9bb3b6;
  border: 1px dashed rgba(73, 150, 156, 0.4);
  cursor: not-allowed;
}

/* ---------- Composer ---------- */
.chat-composer {
  padding: 18px 24px 22px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.chat-composer__wrapper {
  position: relative;
  flex: 1;
  max-width: 880px;
  display: flex;
  align-items: center;
}

.chat-composer__input {
  width: 100%;
  border: 1.5px solid rgba(73, 150, 156, 0.3);
  border-radius: 999px;
  padding: 14px 60px 14px 22px;
  font-size: 15px;
  outline: none;
  background: #ffffff;
  color: #0d2e43;
  box-shadow: 0 2px 10px rgba(13, 46, 67, 0.05);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.chat-composer__input::placeholder {
  color: #9bb3b6;
}

.chat-composer__input:focus {
  border-color: #49969c;
  box-shadow:
    0 0 0 4px rgba(73, 150, 156, 0.15),
    0 4px 14px rgba(73, 150, 156, 0.12);
}

.chat-composer__send {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #49969c;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chat-composer__send:hover:not(:disabled) {
  background: #3f8489;
}

.chat-composer__send:disabled {
  background: #d6e3e5;
  color: #ffffff;
  cursor: not-allowed;
}

/* ---------- Care plan card (bot summary) ---------- */
.chat-msg--plan .chat-msg__bubble {
  max-width: 100%;
  width: 100%;
}

.chat-care-plan {
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.22);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(13, 46, 67, 0.08);
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.chat-care-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #49969c 0%, #233d70 100%);
}

.chat-care-plan__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-care-plan__badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #49969c, #2f7177);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.32);
}

.chat-care-plan__heading {
  flex: 1;
  min-width: 0;
}

.chat-care-plan__title {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #0d2e43;
  line-height: 1.3;
}

.chat-care-plan__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7c83;
  line-height: 1.4;
}

.chat-care-plan__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(76, 175, 131, 0.14);
  color: #2e8a5d;
  font-size: 11px;
  font-weight: 300;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.chat-care-plan__status i {
  font-size: 13px;
}

.chat-care-plan__patient {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f4faf9;
  border: 1px solid rgba(73, 150, 156, 0.15);
  border-radius: 12px;
}

.chat-care-plan__patient-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(73, 150, 156, 0.3);
  flex-shrink: 0;
}

.chat-care-plan__patient-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.chat-care-plan__patient-meta strong {
  font-size: 14px;
  font-weight: 300;
  color: #0d2e43;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-care-plan__patient-meta span {
  font-size: 12px;
  color: #6b7c83;
}

.chat-care-plan__focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(73, 150, 156, 0.14);
  color: #2f7177;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  text-transform: capitalize;
  flex-shrink: 0;
}

.chat-care-plan__focus-pill i {
  font-size: 13px;
}

.chat-care-plan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chat-care-plan__section {
  background: #fafcfc;
  border: 1px solid #ecf1f2;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-care-plan__section--full {
  grid-column: 1 / -1;
}

.chat-care-plan__section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7c83;
  font-weight: 300;
}

.chat-care-plan__section-label i {
  color: #49969c;
  font-size: 14px;
}

.chat-care-plan__value {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0d2e43;
}

.chat-care-plan__pain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chat-care-plan__pain::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8c5cb;
  flex-shrink: 0;
}

.chat-care-plan__pain.is-mild::before {
  background: #4caf83;
  box-shadow: 0 0 0 3px rgba(76, 175, 131, 0.18);
}

.chat-care-plan__pain.is-moderate::before {
  background: #f0a23a;
  box-shadow: 0 0 0 3px rgba(240, 162, 58, 0.2);
}

.chat-care-plan__pain.is-severe::before {
  background: #d24747;
  box-shadow: 0 0 0 3px rgba(210, 71, 71, 0.2);
}

.chat-care-plan__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chat-care-plan__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.3);
  color: #0d2e43;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.chat-care-plan__chip.is-muted {
  background: transparent;
  border-style: dashed;
  border-color: rgba(155, 179, 182, 0.6);
  color: #9aa9af;
  font-style: italic;
}

.chat-care-plan__steps {
  background: linear-gradient(
    135deg,
    rgba(73, 150, 156, 0.08),
    rgba(35, 61, 112, 0.05)
  );
  border: 1px solid rgba(73, 150, 156, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-care-plan__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-care-plan__steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #0d2e43;
  line-height: 1.45;
}

.chat-care-plan__steps-list li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #49969c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.chat-care-plan__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #49969c;
  color: #ffffff;
  border: 1px solid #49969c;
  border-radius: 36px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease-in all;
}

.chat-care-plan__cta:hover {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.chat-care-plan__cta i {
  font-size: 15px;
  line-height: 1;
}

.chat-care-plan.is-subscription-locked {
  position: relative;
  overflow: hidden;
}

.chat-care-plan.is-subscription-locked .chat-care-plan__patient,
.chat-care-plan.is-subscription-locked .chat-care-plan__grid,
.chat-care-plan.is-subscription-locked .chat-care-plan__steps {
  filter: blur(2.5px);
  pointer-events: none;
  user-select: none;
}

/* Very soft overlay tint to reinforce the "locked" feeling
   without washing out the preview. */
.chat-care-plan.is-subscription-locked::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
}

.chat-msg--subscribe {
  justify-content: flex-start;
}

.chat-msg--subscribe .chat-subscribe-banner {
  display: flex;
  justify-content: flex-start;
  padding: 4px 0 8px;
  margin-left: 0px;
  /* 36px avatar + 12px gap */
}

.chat-care-plan__cta.chat-care-plan__cta--subscribe {
  position: relative;
  z-index: 2;
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  font-weight: 400;
  box-shadow: 0 8px 24px rgba(73, 150, 156, 0.25);
  padding: 14px 28px;
}

.chat-care-plan__cta.chat-care-plan__cta--subscribe:hover {
  background: #3f8389;
  border-color: #3f8389;
  transform: scale(1.02);
}

.chat-care-plan__cta.chat-care-plan__cta--subscribe i {
  font-size: 16px;
}

/* Responsive rules for the assessment chat live in responsive.css */

.sysmt-img .bodyimge {
  position: relative;
  z-index: 2;
  transition: filter 0.35s ease;
}

/* .sysmt-img .bodyimge.is-skin-highlight {
  filter: drop-shadow(0 0 6px rgba(73, 150, 156, 0.85)) drop-shadow(0 0 14px rgba(73, 150, 156, 0.55)) drop-shadow(0 0 26px rgba(73, 150, 156, 0.35));
  animation: bodySkinGlowPulse 1.8s ease-in-out infinite;
}

@keyframes bodySkinGlowPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(73, 150, 156, 0.8)) drop-shadow(0 0 14px rgba(73, 150, 156, 0.5)) drop-shadow(0 0 24px rgba(73, 150, 156, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(73, 150, 156, 1)) drop-shadow(0 0 22px rgba(73, 150, 156, 0.7)) drop-shadow(0 0 34px rgba(73, 150, 156, 0.45));
  }
} */

.sysmt-img .bodyimge.is-skin-highlight {
  filter: drop-shadow(0 0 6px rgba(73, 150, 156, 0.85))
    drop-shadow(0 0 14px rgba(73, 150, 156, 0.55))
    drop-shadow(0 0 26px rgba(73, 150, 156, 0.35));
  animation: bodySkinGlowPulse 1.8s ease-in-out infinite;
}

@keyframes bodySkinGlowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(73, 150, 156, 0.8))
      drop-shadow(0 0 14px rgba(73, 150, 156, 0.5))
      drop-shadow(0 0 24px rgba(73, 150, 156, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(73, 150, 156, 1))
      drop-shadow(0 0 22px rgba(73, 150, 156, 0.7))
      drop-shadow(0 0 34px rgba(73, 150, 156, 0.45));
  }
}

/* Touch devices: keep the glow visible while the hotspot is
   pressed/focused, but skip the looping animation to save battery. */
@media (hover: none) {
  .sysmt-img .bodyimge.is-skin-highlight {
    animation: none;
  }
}

.body-hotspot.is-skin-area {
  z-index: 5;
  border-radius: 0;
  background: transparent !important;
  cursor: pointer;
}

/* The decorative pulsing dot + ripple ring make sense for small
   pin-style hotspots; on the body-wide area they would draw a
   misleading dot at the body's center, so suppress them. */
.body-hotspot.is-skin-area::before,
.body-hotspot.is-skin-area::after {
  display: none !important;
}

/* Position the floating "Skin" label at the top of the body-wide
   area instead of being nailed to the rectangle's center. */
.body-hotspot.is-skin-area .hotspot-label {
  top: -8px;
  transform: translate(-50%, -100%);
}

/* =====================================================================
   Patient Dashboard - Layout, Sidebar, Shell, Components
   Fixed hex colors only; Bootstrap classes used wherever possible.
   ===================================================================== */

/* ---------- Shell (matches doctor sidebar + Right_part layout) ---------- */
.pt-shell {
  background: #f4f9f9;
  height: 100vh;
  overflow: hidden;
  color: #262f40;
  position: relative;
}

/* ---------- Floating sidebar (doctor-style card) ---------- */
.pt-shell__sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: 250px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 40px #0000000d;
  overflow: hidden;
  z-index: 100;
  transition: 0.5s;
}

.pt-shell.is-collapsed .pt-shell__sidebar {
  width: 80px;
}

/* ---------- Right part (content area) ---------- */
.pt-shell__main {
  position: absolute;
  top: 0;
  left: 260px;
  width: calc(100% - 280px);
  margin: 20px;
  min-height: 95vh;
  max-height: 95vh;
  padding: 0 20px 0 10px;
  transition: 0.5s;
  overflow-y: auto;
}

.pt-shell__main::-webkit-scrollbar {
  width: 8px;
}

.pt-shell__main::-webkit-scrollbar-track {
  background: transparent;
}

.pt-shell__main::-webkit-scrollbar-thumb {
  background: #e5eeed;
  border-radius: 4px;
}

.pt-shell__main::-webkit-scrollbar-thumb:hover {
  background: #b8c8cb;
}

.pt-shell.is-collapsed .pt-shell__main {
  left: 100px;
  width: calc(100% - 120px);
}

.pt-shell__content {
  padding: 0;
  width: 100%;
  margin: 24px 0 0;
  min-height: calc(100vh - 228px);
}

/* ---------- Top bar (page title + user dropdown), matches site_header ---------- */
.pt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  /* box-shadow: 0 0 40px #0000000d; */
  gap: 16px;
}

.pt-topbar__title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Mirror .icon_inner h2 from doctor site_header */
.pt-topbar__title h2 {
  color: #262f40;
  font-size: 25px;
  margin: 0 0 5px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.1;
  font-family: inherit;
}

/* Mirror .icon_inner h6 from doctor site_header */
.pt-topbar__title p {
  color: #6c7c93;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  font-family: inherit;
}

.pt-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-topbar__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6f4f3;
  border: none;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
}

.pt-topbar__icon-btn:hover {
  background: #49969c;
  color: #ffffff;
}

.pt-topbar__icon-btn .pt-topbar__badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 300;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #ffffff;
}

.pt-topbar__user {
  position: relative;
}

.pt-topbar__user-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

/* Avatar-only trigger (no name / email / caret in header) */
.pt-topbar__user-btn--avatar-only {
  padding: 4px;
  gap: 0;
}

.pt-topbar__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  border: 1px solid #e5eeed;
  box-shadow: none;
}

.pt-topbar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-topbar__name {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
  font-family: inherit;
}

/* Mirror .site_header .user_name h2 */
.pt-topbar__name strong {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin: 0;
}

/* Mirror .site_header .user_name p.designation */
.pt-topbar__name small {
  font-size: 12px;
  color: #6c7c93;
  font-weight: 400;
  margin: 0;
}

.pt-topbar__caret {
  color: #525252;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.pt-topbar__user.is-open .pt-topbar__caret {
  transform: rotate(180deg);
}

/* Patient topbar: profile dropdown matches doctor header (.user-dropdown) */
.pt-topbar__user > ul.dropdown-menu.user-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: auto;
  margin-top: 0 !important;
  transform: none !important;
  z-index: 1050;
}

.pt-topbar__user > ul.dropdown-menu.user-dropdown .dropdown-item i {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}

.pt-topbar__user > ul.dropdown-menu.user-dropdown .dropdown-item.text-danger i {
  color: inherit;
}

.pt-topbar__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5eeed;
  box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.22);
  padding: 8px;
  z-index: 80;
  animation: pt-fade-in 0.18s ease;
}

.pt-topbar__menu button,
.pt-topbar__menu a {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: left;
}

.pt-topbar__menu button:hover,
.pt-topbar__menu a:hover {
  background: #e6f4f3;
  color: #49969c;
}

.pt-topbar__menu button i,
.pt-topbar__menu a i {
  font-size: 16px;
  color: #6b7280;
}

.pt-topbar__menu button:hover i,
.pt-topbar__menu a:hover i {
  color: #49969c;
}

.pt-topbar__menu hr {
  margin: 6px 4px;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.pt-topbar__menu .pt-topbar__menu-danger {
  color: #ef4444;
}

.pt-topbar__menu .pt-topbar__menu-danger:hover {
  background: #fef2f2;
  color: #ef4444;
}

.pt-topbar__menu .pt-topbar__menu-danger i,
.pt-topbar__menu .pt-topbar__menu-danger:hover i {
  color: #ef4444;
}

/* ---------- Sidebar (mirrors .sidebar from doctor dashboard) ---------- */
.pt-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

/* ---------- Sidebar header (logo + 3-line toggle) ---------- */
.pt-sidebar__top {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  margin: 0px;
  width: 100%;
}

.pt-sidebar__image-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pt-sidebar__image {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.pt-sidebar__image a {
  display: inline-flex;
  cursor: pointer;
}

.pt-sidebar__image img {
  width: 160px;
  border-radius: 0;
  transition: 0.5s;
}

.pt-sidebar.is-collapsed .pt-sidebar__image {
  opacity: 0;
  width: 0;
  min-width: 0;
  margin: 0;
  visibility: hidden;
  overflow: hidden;
}

.pt-sidebar.is-collapsed .pt-sidebar__image-text {
  justify-content: center;
}

/* 3-line toggle (matches span.toggle in doctor sidebar) */
.pt-sidebar__toggle {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}

.pt-sidebar__toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #636363;
  border-radius: 5px;
  top: 0;
  right: 0;
  transition: 0.5s;
}

.pt-sidebar__toggle .two {
  top: 8px;
  width: 80%;
}

.pt-sidebar__toggle .three {
  top: 16px;
}

.pt-sidebar.is-collapsed .pt-sidebar__toggle .two {
  right: auto;
  left: 0;
}

/* ---------- Menu wrapper (matches .menu-bar) ---------- */
.pt-sidebar__menu-bar {
  height: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
}

.pt-sidebar__menu-bar::-webkit-scrollbar {
  display: none;
}

.pt-sidebar__menu {
  padding: 15px;
}

.pt-sidebar__menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-sidebar__menu-links--secondary {
  border-top: 1px solid #eef2f4;
  margin-top: 10px;
  padding-top: 10px;
}

/* ---------- Nav links (matches .nav-link / li a) ---------- */
.pt-sidebar__nav-link {
  padding: 0;
  margin: 0 0 5px;
  transition: 0.3s ease-in all;
  border-radius: 5px;
  list-style: none;
}

.pt-sidebar__nav-link a {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  transition: 0.3s ease-in all;
  gap: 0px;
  padding: 7px 15px;
  color: #636363;
  border-radius: 5px;
}

/* Tooltip wrapper around <Link> should fill the row so the
   click target and hover area match the doctor sidebar. */
.pt-sidebar__nav-link > .sm-tooltip {
  display: block;
  width: 100%;
}

.pt-sidebar__nav-link a i {
  font-size: 16px;
  color: #636363;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.pt-sidebar__text {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: #636363;
  width: 100%;
  margin-left: 6px;
  transition: 0.5s ease-in all;
  opacity: 1;
  visibility: visible;
  text-align: start;
}

.pt-sidebar.is-collapsed .pt-sidebar__text {
  opacity: 0;
  visibility: hidden;
  width: 1px;
  overflow: hidden;
  transition: 0.5s ease-in all;
}

/* Hover (full background like doctor sidebar) */
.pt-sidebar__nav-link:hover {
  background: #49969c;
  color: #fff;
}

.pt-sidebar__nav-link:hover a,
.pt-sidebar__nav-link:hover a i,
.pt-sidebar__nav-link:hover .pt-sidebar__text {
  color: #fff;
}

/* Active state */
.pt-sidebar__nav-link.active {
  background: #49969c;
}

.pt-sidebar__nav-link.active a,
.pt-sidebar__nav-link.active a i,
.pt-sidebar__nav-link.active .pt-sidebar__text {
  color: #fff;
}

/* ---------- Collapsed nav row (matches doctor sidebar: keep
   icon at natural flex-start position, just shrink the label). ---------- */
.pt-sidebar.is-collapsed .pt-sidebar__nav-link a {
  padding: 10px 15px;
  gap: 5px;
}

/* ---------- Footer (Sign Out button + copy, like .ftr-dash) ---------- */
.pt-sidebar__ftr {
  padding: 0 15px 15px;
  text-align: center;
}

.pt-sidebar__ftr p {
  margin: 0;
  color: #49969c;
  font-size: 12px;
  padding: 9px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.pt-sidebar.is-collapsed .pt-sidebar__ftr p {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.pt-sidebar__sign-out {
  margin: 0;
  background: #49969c;
  padding: 0;
  border-radius: 5px;
  list-style: none;
}

.pt-sidebar__sign-out a {
  color: #fff;
  padding: 10px 15px;
}

.pt-sidebar__sign-out a i {
  color: #fff;
}

.pt-sidebar__sign-out .pt-sidebar__text {
  color: #fff;
}

.pt-sidebar__sign-out:hover {
  background: #3f8389;
}

.pt-sidebar.is-collapsed .pt-sidebar__sign-out a {
  padding: 10px 15px;
}

/* ---------- Page basics ---------- */
.pt-page {
  display: flex;
  flex-direction: column;
}

.pt-section {
  margin-top: 0px;
}

.pt-card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  height: 100%;
  background: #fff;
  border: solid 1px #e5eeed;
}

.pt-card__title {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt-card__title i {
  color: #49969c;
  font-size: 19px;
}

.pt-card__paragraph {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin: 0;
}

.pt-card__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #49969c;
  font-weight: 300;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pt-card__footer-link:hover {
  color: #49969c;
  transform: translateX(2px);
}

/* ---------- Page Header ---------- */
.pt-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 25px 20px 0px;
}

.pt-page-header__main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.pt-page-header__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pt-page-header__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #49969c;
  margin-bottom: 4px;
}

.pt-page-header__title {
  font-size: 24px;
  font-weight: 300;
  color: #262f40;
  margin: 0;
  line-height: 1.2;
}

.pt-page-header__desc {
  margin: 6px 0 0;
  color: #525252;
  font-size: 12px;
  max-width: 640px;
}

.pt-page-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Welcome banner (matches .sm-welcome-banner from doctor dashboard) ---------- */
.pt-welcome {
  position: relative;
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #5bbfb6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pt-welcome__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pt-welcome__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pt-welcome__bubbles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.1);
}

.pt-welcome__bubbles span:nth-child(2) {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.pt-welcome__bubbles span:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.1);
}

.pt-welcome__bubbles span:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.pt-welcome__content {
  flex: 1;
  min-width: 220px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.pt-welcome__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  backdrop-filter: blur(6px);
}

.pt-welcome__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.pt-welcome__title {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  margin: 14px 0 6px;
  line-height: 1.2;
}

.pt-welcome__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}

.pt-welcome__cta {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #49969c;
  border-radius: 36px;
  padding: 8px 18px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease-in all;
}

.pt-welcome__cta:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

/* ---------- Tone helpers ---------- */
.pt-tone-teal {
  --pt-tone: #49969c;
  --pt-tone-soft: #e8f7f6;
  --pt-tone-deep: #49969c;
}

.pt-tone-purple {
  --pt-tone: #7c3aed;
  --pt-tone-soft: #ede9fe;
  --pt-tone-deep: #7c3aed;
}

.pt-tone-orange {
  --pt-tone: #f4a261;
  --pt-tone-soft: #fef0e6;
  --pt-tone-deep: #f4a261;
}

.pt-tone-blue {
  --pt-tone: #2563eb;
  --pt-tone-soft: #eff6ff;
  --pt-tone-deep: #2563eb;
}

.pt-tone-green {
  --pt-tone: #10b981;
  --pt-tone-soft: #dcfce7;
  --pt-tone-deep: #10b981;
}

/* Note: --pt-tone is used internally by components below to keep markup terse.
   These are not theme variables and are not exposed to consumers. */

/* ---------- Summary card ---------- */
.pt-summary-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Matches .sm-stat-card / .sm-stat-card-v2 from doctor dashboard */
.pt-summary-card {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
}

.pt-summary-card__link:hover .pt-summary-card,
.pt-summary-card:hover {
  transform: translateY(-10px);
}

.pt-summary-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.pt-summary-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2f8f9d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pt-summary-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.2px;
}

.pt-summary-card__badge--ok {
  background: #e6f7ee;
  color: #10b981;
}

.pt-summary-card__badge--warn {
  background: #fff1e3;
  color: #f4a261;
}

.pt-summary-card__badge--muted {
  background: #f1f3f5;
  color: #525252;
}

.pt-summary-card__label {
  font-size: 13px;
  color: #525252;
  font-weight: 500;
  margin: 6px 0 0;
}

.pt-summary-card__value {
  font-size: 24px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.1;
  margin-top: 2px;
}

.pt-summary-card__helper {
  font-size: 12px;
  color: #525252;
  margin-top: 6px;
}

/* ---------- Quick actions ---------- */
.pt-quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0px 20px 15px;
}

/* Matches .sm-qa-item from doctor dashboard */
.pt-quick-action {
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.pt-quick-action:hover {
  background: #e6f4f3;
  border-color: #bde6e2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
  color: inherit;
}

.pt-quick-action__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #e6f4f3);
  color: var(--pt-tone, #2f8f9d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pt-quick-action__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-quick-action__content strong {
  font-size: 15px;
  font-weight: 500;
  color: #262f40;
}

.pt-quick-action__content span {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
}

/* ---------- Activity list (matches .sm-activity-item from doctor dashboard) ---------- */
.pt-activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 20px 10px;
}

.pt-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 0px 0;
  position: relative;
  margin-bottom: 10px;
}

.pt-activity-item:last-child {
  border-bottom: none;
}

.pt-activity-item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 32px;
  bottom: -20px;
  width: 1.5px;
  background: #e5e7eb;
}

.pt-activity-list > a:last-child .pt-activity-item::before,
.sm-activity-list > a:last-child .pt-activity-item::before {
  display: none;
}

.pt-activity-item__icon.announcement {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ede9fe;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.maintenance {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fef3c7;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.admin-insurance {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e3f2fd;
  color: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.admin-profile {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.promotion {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.admin-procedure {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f7f6;
  color: #49969c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

.pt-activity-item__icon.admin-device {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fef0e6;
  color: rgb(244, 162, 97);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: none;
}

/* .pt-activity-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fde2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
} */

.pt-activity-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-activity-item__body strong {
  font-size: 15px;
  font-weight: 500;
  color: #262f40;
}

.pt-activity-item__body span {
  font-size: 12px;
  color: #525252;
  margin-top: 2px;
  font-weight: 500;
}

.pt-activity-item__time {
  font-size: 12px;
  color: #525252;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

/* ---------- Buttons (theme: #49969C pill, scale on hover) ---------- */
.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 30px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
  font-family: inherit;
}

.pt-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pt-btn--primary {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
}

.pt-btn--primary:hover:not(:disabled) {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.current-new-plan p {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.pt-current-plan p i {
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #41aaa3 100%);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pt-btn--ghost {
  background: #ffffff;
  color: #49969c;
  /* border-color: #49969C; */
}

.pt-btn--ghost:hover:not(:disabled) {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  transform: scale(1.05);
}

.pt-btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  line-height: 16px;
}

.pt-link-btn {
  background: none;
  border: none;
  color: #49969c;
  font-weight: 300;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pt-link-btn:hover {
  background: #e8f7f6;
  color: #49969c;
}

/* ---------- Tabs ---------- */
.pt-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 6px;
  width: fit-content;
}

.pt-tabs--compact {
  padding: 4px;
}

.pt-tabs__tab {
  background: transparent;
  border: none;
  color: #525252;
  font-weight: 300;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pt-tabs__tab i {
  font-size: 17px;
}

.pt-tabs__tab:hover {
  color: #49969c;
  background: #e6f4f3;
}

.pt-tabs__tab.is-active {
  background: #49969c;
  color: #ffffff;
}

.pt-tabs__count {
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
}

.pt-tabs__tab:not(.is-active) .pt-tabs__count {
  background: #e5e7eb;
  color: #525252;
}

/* ---------- Tabs row with right-aligned Saved toggle ---------- */
.pt-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pt-tabs-row__saved {
  flex-shrink: 0;
}

/* ---------- Saved toggle active state ---------- */
.pt-btn--ghost.is-active {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
}

.pt-btn--ghost.is-active:hover {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
}

/* ---------- Recommendation save / bookmark button ---------- */
.pt-rec-save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5eeed;
  color: #525252;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px -6px rgba(15, 23, 42, 0.15);
}

.pt-rec-save i {
  font-size: 16px;
  line-height: 1;
}

.pt-rec-save:hover {
  color: #49969c;
  border-color: #bde6e2;
  background: #e8f7f6;
  transform: scale(1.08);
}

.pt-rec-save.is-saved {
  background: #e8f7f6;
  border-color: #49969c;
  color: #49969c;
}

.pt-rec-save.is-saved:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #ef4444;
}

/* ---------- Doctor card summary line ---------- */
.pt-doc-card__summary {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #f4f9f9;
  border-left: 3px solid #49969c;
  border-radius: 6px;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Saved recommendations history panel ---------- */
.pt-saved-panel {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.12);
  margin-top: 16px;
}

.pt-saved-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e5eeed;
}

.pt-saved-panel__head h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: #262f40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pt-saved-panel__head h3 i {
  color: #49969c;
}

.pt-saved-panel__head p {
  margin: 0;
  color: #525252;
  font-size: 12px;
}

.pt-saved-panel__count {
  background: #e8f7f6;
  color: #49969c;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pt-saved-panel__empty {
  text-align: center;
  padding: 22px 12px;
  color: #525252;
}

.pt-saved-panel__empty i {
  font-size: 36px;
  color: #bde6e2;
  margin-bottom: 6px;
  display: block;
}

.pt-saved-panel__empty p {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
}

.pt-saved-panel__empty span {
  font-size: 12px;
  color: #525252;
}

.pt-saved-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-saved-list__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.pt-saved-list__row:hover {
  background: #f4f9f9;
  border-color: #bde6e2;
}

.pt-saved-list__type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.pt-saved-list__type i {
  font-size: 13px;
}

.pt-saved-list__type--doctor {
  background: #e8f7f6;
  color: #49969c;
}

.pt-saved-list__type--procedure {
  background: #dcfce7;
  color: #10b981;
}

.pt-saved-list__type--device {
  background: #e8f7f6;
  color: #49969c;
}

.pt-saved-list__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pt-saved-list__body strong {
  font-size: 13px;
  font-weight: 500;
  color: #262f40;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt-saved-list__body span {
  font-size: 11px;
  color: #525252;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt-saved-list__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pt-saved-list__remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #525252;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pt-saved-list__remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
}

/* ============================================================ */
/* Recommendation cards Ã¢â‚¬â€ image-led, equal-height, modern hover  */
/* ============================================================ */

.pt-rec-grid {
  --pt-rec-card-gap: 20px;
  row-gap: var(--pt-rec-card-gap);
  align-items: stretch;
}

.pt-rec-grid > [class*="col-"] {
  display: flex;
}

/* ---------- Card shell ---------- */
.pt-rec-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 4px 16px -10px rgba(15, 23, 42, 0.08);
}

.pt-rec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--pt-tone, #2f8f9d),
    var(--pt-tone-soft, #bde6e2)
  );
  z-index: 4;
}

.pt-rec-card:hover {
  transform: translateY(-6px);
  border-color: var(--pt-tone-soft, #bde6e2);
}

/* ---------- Media (image / icon fallback) ---------- */
.pt-rec-card__media {
  position: relative;
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--pt-tone-soft, #e8f7f6) 0%,
    #ffffff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.pt-rec-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pt-rec-card:hover .pt-rec-card__media img {
  transform: scale(1.06);
}

/* Icon fallback when no image OR image fails to load */
.pt-rec-card__media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, var(--pt-tone-soft, #e8f7f6) 0%, #ffffff 100%);
  color: var(--pt-tone, #2f8f9d);
  font-size: 64px;
  transition: transform 0.4s ease;
}

.pt-rec-card:hover .pt-rec-card__media-fallback {
  transform: scale(1.08);
}

/* Bottom gradient overlay so the category pill stays readable on photos */
.pt-rec-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(15, 23, 42, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Floating category pill on image */
.pt-rec-card__category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pt-tone-deep, #2f8f9d);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px -4px rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.pt-rec-card__category i {
  font-size: 13px;
  color: var(--pt-tone, #2f8f9d);
}

/* ---------- Body (flex 1 so footer pins to bottom) ---------- */
.pt-rec-card__body {
  padding: 16px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-rec-card__title {
  font-size: 17px;
  font-weight: 500;
  color: #262f40;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-rec-card__subtitle {
  font-size: 12px;
  color: var(--pt-tone-deep, #2f8f9d);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.pt-rec-card__summary {
  font-size: 13px;
  color: #525252;
  line-height: 1.55;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Meta row (time / recovery / certification) */
.pt-rec-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e5eeed;
}

.pt-rec-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #525252;
  font-weight: 400;
}

.pt-rec-card__meta i {
  color: var(--pt-tone, #2f8f9d);
  font-size: 14px;
}

/* Tags */
.pt-rec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  min-height: 26px;
}

.pt-rec-card__tag {
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone-deep, #2f8f9d);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 99px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ---------- Footer (always pinned to bottom) ---------- */
.pt-rec-card__footer {
  margin-top: auto;
  padding: 12px 18px 16px;
  border-top: 1px solid #f1f5f4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pt-rec-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pt-tone, #2f8f9d);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s ease;
}

.pt-rec-card__cta i {
  transition: transform 0.2s ease;
}

.pt-rec-card__cta:hover {
  color: var(--pt-tone-deep, #2f8f9d);
}

.pt-rec-card__cta:hover i {
  transform: translateX(3px);
}

/* ============================================================ */
/* Recommendations Ã¢â‚¬â€ filter bar + rich doctor cards             */
/* ============================================================ */

/* ---------- Filter bar (search + selects) ---------- */
.pt-filter-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
  box-shadow: 0 0 40px 0px #0000000d;
  margin-bottom: 20px;
}

.pt-filter-bar__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5eeed;
  border-radius: 6px;
  padding: 0 12px;
  height: 43px;
  transition: all 0.2s ease;
}

.pt-filter-bar__search:focus-within {
  border-color: #49969c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.15);
}

.pt-filter-bar__search > i {
  color: #525252;
  font-size: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

.pt-filter-bar__search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #262f40;
  font-family: inherit;
}

.pt-filter-bar__search input::placeholder {
  color: #9ca3af;
}

.pt-filter-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pt-filter-bar__select {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: solid 1px #1f2b3e40;
  border-radius: 6px;
  height: 43px;
  transition: all 0.2s ease;
  color: #525252;
}

.pt-filter-bar__select:focus-within {
  border-color: #49969c;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.15);
}

.pt-filter-bar__select select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 32px 0 12px;
  font-size: 13px;
  color: #525252;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  height: 100%;
  text-overflow: ellipsis;
}

.pt-filter-bar__select > i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #525252;
  font-size: 18px;
  pointer-events: none;
}

/* ---------- Doctor recommendation card ---------- */
.pt-doc-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px -10px rgba(15, 23, 42, 0.08);
}

.pt-doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
  z-index: 2;
}

.pt-doc-card:hover {
  transform: translateY(-6px);
}

.pt-doc-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pt-doc-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8f7f6;
  position: relative;
  box-shadow: 0 4px 12px -4px rgba(47, 143, 157, 0.25);
  border: 3px solid #ffffff;
  outline: 1px solid #e5eeed;
}

.pt-doc-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pt-doc-card__avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: #49969c;
  background: #e8f7f6;
  text-transform: uppercase;
}

.pt-doc-card__head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pt-doc-card__name {
  font-size: 17px;
  font-weight: 500;
  color: #262f40;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

.pt-doc-card__spec {
  margin: 0;
  font-size: 13px;
  color: #49969c;
  font-weight: 400;
  line-height: 1.3;
}

.pt-doc-card__sep {
  margin: 0 6px;
  color: #bde6e2;
}

.pt-doc-card__hospital {
  margin: 2px 0 0;
  font-size: 12px;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.pt-doc-card__hospital i {
  color: #9ca3af;
  font-size: 14px;
  flex-shrink: 0;
}

.pt-doc-card__rating {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #525252;
}

.pt-doc-card__rating i {
  color: #f59e0b;
  font-size: 14px;
}

.pt-doc-card__rating strong {
  color: #262f40;
  font-weight: 600;
}

.pt-doc-card__rating span {
  color: #525252;
}

.pt-doc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 14px;
}

.pt-doc-card__tag {
  background: #e8f7f6;
  color: #49969c;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 99px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pt-doc-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e5eeed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pt-doc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #49969c;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.pt-doc-card__cta i {
  transition: transform 0.2s ease;
}

.pt-doc-card__cta:hover {
  color: #49969c;
}

.pt-doc-card__cta:hover i {
  transform: translateX(3px);
}

/* ---------- Detail card (doctor) ---------- */
.pt-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #49969c;
  text-decoration: none;
  font-weight: 300;
  font-size: 13px;
  transition: all 0.2s ease;
}

.pt-back-link:hover {
  color: #49969c;
  transform: translateX(-2px);
}

.pt-detail-card {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
}

.pt-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
}

.pt-detail-card:hover {
  transform: translateY(-10px);
}

.pt-detail-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2f8f9d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin-bottom: 12px;
}

.pt-detail-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fef3c7;
  color: #f4a261;
  font-weight: 300;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pt-detail-card h3 {
  font-size: 20px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 4px;
}

.pt-detail-card p {
  font-size: 13px;
  color: #525252;
  margin: 0 0 16px;
}

.pt-detail-card__meta {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.pt-detail-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pt-detail-card__meta li i {
  color: var(--pt-tone, #2f8f9d);
  font-size: 18px;
  margin-top: 2px;
}

.pt-detail-card__meta li span {
  display: flex;
  flex-direction: column;
  color: #525252;
  font-size: 13px;
}

.pt-detail-card__meta li span strong {
  color: #525252;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.pt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-tag {
  background: #e8f7f6;
  color: #49969c;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 300;
}

.pt-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pt-info-grid > div {
  display: flex;
  flex-direction: column;
}

.pt-info-grid span {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #525252;
  margin-bottom: 4px;
}

.pt-info-grid strong {
  font-size: 14px;
  color: #262f40;
  font-weight: 300;
}

.pt-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pt-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: #525252;
  font-size: 14px;
  line-height: 1.55;
}

.pt-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49969c;
}

/* ---------- Device media ---------- */
.pt-device-media {
  background: linear-gradient(135deg, #f4f9f9, #ffffff);
  border: 1px solid #e5eeed;
  border-radius: 16px;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pt-device-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pt-device-media__placeholder {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

/* ---------- Pricing ---------- */
.pt-current-plan {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px 20px;
  margin-bottom: 30px;
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #5bbfb6 100%);
}

.pt-current-plan__label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pt-current-plan h2 {
  font-size: 35px;
  font-weight: 500;
  margin: 4px 0px 0px;
  color: #fff;
  display: inline-flex;
  align-items: start;
  gap: 0px;
  flex-direction: column;
  margin-bottom: 0px;
}

.current-new-plan h6 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
  display: flex;
  align-items: self-start;
  column-gap: 15px;
  gap: 10px;
  padding-top: 8px;
}

.current-data-sub {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 5px;
  color: #fef0d6;
}

.pt-current-plan p {
  margin: 0;
  color: #efefef;
  font-size: 15px;
  font-weight: 500;
}

.pt-current-plan__badge {
  background: #d1fae5;
  color: #10b981;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  /* position: absolute; */
  /* right: 20px; */
  /* top: 18px; */
}

.pt-current-plan__actions {
  display: flex;
  gap: 10px;
}

/* ---------- Billing toggle (Monthly / Yearly) ---------- */
.pt-billing-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.15);
  margin: 20px auto;
}

.pt-billing-toggle__btn {
  background: transparent;
  border: none;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  line-height: 1.2;
}

.pt-billing-toggle__btn:hover {
  color: #49969c;
}

.pt-billing-toggle__btn.is-active {
  background: linear-gradient(135deg, #2f8f9d 0%, #3fa9a2 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px -4px rgba(47, 143, 157, 0.5);
}

.pt-billing-toggle__btn.is-active:hover {
  color: #ffffff;
}

.pt-billing-toggle__save {
  background: #dcfce7;
  color: #10b981;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.pt-billing-toggle__btn.is-active .pt-billing-toggle__save {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* ---------- Pricing card ---------- */
.pt-pricing-card {
  background: #eef7f8;
  border: 1px solid #35999f8c;
  border-radius: 18px;
  padding: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s ease all;
}

.pt-pricing-card .basic-premium h6 {
  background: #e6f4f3;
  color: #3a9e94;
}

.pt-pricing-card.is-monthly .basic-premium h6 {
  /* background: #10b981; */
  /* background: rgb(58 158 148 / 58%); */
  border: 1px solid 1px solid rgba(58, 158, 148, 0.35);
  background: rgba(58, 158, 148, 0.2);
  border: 1px solid rgb(58 158 148 / 73%);
  color: #6bbdb5;
}

.pt-pricing-card:hover {
  transform: translateY(-6px);
}

.pt-pricing-card.is-highlight {
  border: 1px solid #bde6e2;
  background:
    radial-gradient(
      120% 60% at 100% 100%,
      rgba(189, 230, 226, 0.35) 0%,
      transparent 70%
    ),
    #ffffff;
}

.pt-pricing-card__ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #2f8f9d 0%, #3fa9a2 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px -4px rgba(47, 143, 157, 0.55);
  z-index: 2;
}

.pt-pricing-card__ribbon i {
  color: #ffe08a;
  font-size: 12px;
}

.pt-pricing-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 5px;
}

.pt-pricing-card__head-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.pt-pricing-card__head > div {
  flex: 1;
  min-width: 0;
}

.pt-pricing-card__head h3 {
  font-size: 22px;
  font-weight: 500;
  color: #262f40;
  margin: 48px 0 2px;
  line-height: 1.2;
}

.pt-pricing-card__head p {
  font-size: 14px;
  color: #525252;
  margin: 0;
  line-height: 1.4;
}

.pt-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0 16px;
  /* border-top: 1px solid rgb(229 231 235 / 58%); */
  margin: 5px 0 2px;
  justify-content: start;
}

.pt-pricing-card__price h1 {
  font-size: 26px;
  color: rgb(101 101 101 / 69%);
  margin-bottom: 0px;
  font-weight: 600;
  text-decoration: line-through;
  display: flex;
  order: 0;
}

.pt-pricing-card__price-amount {
  font-size: 38px;
  font-weight: 600;
  color: #262f40;
  line-height: 1;
}

.pt-pricing-card__price-period {
  color: #49969c;
  font-size: 14px;
  font-weight: 400;
}

.pt-pricing-card__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pt-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #262f40;
  line-height: 1.4;
  width: calc(100% - 30px);
}

.pt-pricing-card__features li i {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.pt-pricing-card__features li.is-included i {
  color: #10b981;
}

.pt-pricing-card__features li.is-excluded {
  color: #9ca3af;
  text-decoration: line-through;
}

.pt-pricing-card__features li.is-excluded i {
  color: #ef4444;
  text-decoration: none;
  display: inline-flex;
}

.pt-pricing-card__cta {
  width: 100%;
  margin-top: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 30px;
  border-radius: 36px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
  font-family: inherit;
}

.pt-pricing-card__cta.is-primary {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  transition: 0.3s ease-in all;
}

.pt-pricing-card__cta.is-primary:hover {
  transform: scale(1.05);
}

.pt-pricing-card__cta.is-primary:hover:not(:disabled) {
  background: #49969c;
  color: #ffffff;
  transform: scale(1.05);
}

.pt-pricing-card__cta.is-ghost {
  background: #ffffff;
  color: #1b364c;
  border-color: #dde8e6;
  border-width: 2px;
}

.pt-pricing-card__cta.is-ghost:hover:not(:disabled) {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  transform: scale(1.05);
}

/* ---------- Plan-card lifecycle states ---------- */

.pt-pricing-card__cta.is-current,
.pt-pricing-card__cta.is-current:disabled,
.is-basic .pt-pricing-card__cta.is-current,
.is-basic .pt-pricing-card__cta.is-current:disabled,
.pt-pricing-card.is-basic .pt-pricing-card__cta.is-current,
.pt-pricing-card.is-basic .pt-pricing-card__cta.is-current:disabled {
  color: #ffffff !important;
  opacity: 1 !important;
  background: linear-gradient(
    120deg,
    #2f8f9d 0%,
    #3fa9a2 55%,
    #5bbfb6 100%
  ) !important;
  border-color: transparent !important;
  cursor: not-allowed;
}

.pt-pricing-card__cta.is-current i,
.pt-pricing-card__cta.is-current svg {
  color: #ffffff !important;
}

.pt-pricing-card__cta.is-current:hover {
  transform: none;
}

.pt-pricing-card__cta.is-scheduled {
  background: #fff6e5 !important;
  color: #b86e00 !important;
  border-color: #f1c27a !important;
  cursor: not-allowed;
}

.pt-pricing-card__cta.is-scheduled:hover {
  transform: none;
}

.pt-pricing-card__cta.is-expired {
  background: #f2f2f2 !important;
  color: #8a8a8a !important;
  border-color: #d9d9d9 !important;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(138, 138, 138, 0.55);
}

.pt-pricing-card__cta.is-expired:hover {
  transform: none;
}

.pt-pricing-card.is-card-expired {
  opacity: 0.65;
  filter: grayscale(0.35);
}

.pt-pricing-card.is-card-scheduled {
  outline: 1px dashed rgba(241, 194, 122, 0.8);
  outline-offset: -2px;
}

/* ---------- Banner ---------- */
.pt-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
}

.pt-banner i {
  font-size: 20px;
}

.pt-banner--success {
  background: #d1fae5;
  color: #10b981;
  border: 1px solid #6ee7b7;
}

.pt-banner__close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.pt-banner__close:hover {
  opacity: 1;
}

/* ---------- Tables (exact match with care-plan-list__table) ---------- */
.pt-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px 20px 20px;
}

.pt-table thead {
  background: #f6f8fa;
}

.pt-table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
}

.pt-table thead th i,
.pt-table thead th svg,
.pt-table thead th img {
  margin-left: 4px;
  vertical-align: middle;
}

.pt-table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  border-top: solid 1px #e5e7eb;
  white-space: nowrap;
}

.pt-table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.pt-table tbody tr:hover {
  background: #fafbfc;
}

/* Round corner cells so background doesn't cut the radius */
.pt-table thead th:first-child {
  border-top-left-radius: 10px;
}

.pt-table thead th:last-child {
  border-top-right-radius: 10px;
}

.pt-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.pt-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Extra 15px breathing room on left + right edges of all cells */
.pt-table thead th:first-child,
.pt-table tbody td:first-child {
  padding-left: 15px;
}

.pt-table thead th:last-child,
.pt-table tbody td:last-child {
  padding-right: 15px;
  border-right: 1px solid #e5e7eb;
}

/* Wide tables: scroll inside wrapper (patient portal accordions, etc.) */
.pt-page .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: #94c1c5 transparent;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #94c1c5 transparent;
}

.pt-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pt-status-badge--paid,
.pt-status-badge--completed,
.pt-status-badge--active,
.pt-status-badge--approved {
  background: #e6f7ee;
  color: #10b981;
}

.pt-status-badge--in-progress,
.pt-status-badge--pending,
.pt-status-badge--review,
.pt-status-badge--scheduled {
  background: #fef3c7;
  color: #f4a261;
}

.pt-status-badge--expired,
.pt-status-badge--canceled,
.pt-status-badge--cancelled {
  background: #e5e7eb;
  color: #525252;
}

.pt-status-badge--failed,
.pt-status-badge--rejected,
.pt-status-badge--declined,
.pt-status-badge--limit-over,
.pt-status-badge--limit_over {
  background: #fee2e2;
  color: #ef4444;
}

.pt-status-badge--refunded,
.pt-status-badge--info {
  background: #dbeafe;
  color: #2563eb;
}

.pt-status-badge--archived,
.pt-status-badge--inactive {
  background: #e5e7eb;
  color: #525252;
}

.pt-pill {
  display: inline-block;
  padding: 3px 10px;
  background: #ede9fe;
  color: #7c3aed;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 300;
}

/* ---------- Profile ---------- */
.pt-profile-card {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pt-profile-card__avatar {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pt-profile-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8f7f6;
}

.pt-profile-card__avatar-edit {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #49969c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: all 0.2s ease;
}

.pt-profile-card__avatar-edit:hover {
  background: #49969c;
  transform: scale(1.05);
}

.pt-profile-card__form {
  flex: 1;
  min-width: 280px;
}

.pt-form-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  margin-bottom: 6px;
}

.pt-required {
  color: #ef4444;
}

.pt-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  background: #ffffff;
  font-size: 14px;
  color: #262f40;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pt-form-input:focus {
  outline: none;
  border-color: #49969c;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
}

.pt-form-input.has-error {
  border-color: #ef4444;
  background: #fef2f2;
}

.pt-form-input.is-readonly {
  background: #f4f9f9;
  color: #525252;
}

.pt-form-error {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

.pt-profile-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* ============================================================ */
/* Profile page Ã¢â‚¬â€ sidebar (avatar + info + tip) + form card     */
/* ============================================================ */

/* ---------- Left sidebar profile card ---------- */
.pt-profile-side {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px 24px;
  height: 100%;
  box-shadow: 0 4px 18px -12px rgba(15, 23, 42, 0.08);
}

.pt-profile-side__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background:
    radial-gradient(
      120% 90% at 0% 0%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #e8f7f6 0%, #d6eeec 60%, #bde6e2 100%);
  pointer-events: none;
}

.pt-profile-side__avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin-top: 71px;
  z-index: 1;
}

.pt-profile-side__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.pt-profile-side__avatar-edit {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #49969c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* border: 3px solid #FFFFFF; */
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px -4px rgba(47, 143, 157, 0.55);
  font-size: 14px;
}

.pt-profile-side__avatar-edit svg {
  max-width: 16px;
}

.pt-profile-side__avatar-edit:hover {
  background: #49969c;
  transform: scale(1.08);
}

.pt-profile-side__name {
  font-size: 18px;
  font-weight: 400;
  color: #262f40;
  margin: 16px 0 4px;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

.pt-profile-side__member {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #525252;
  font-size: 13px;
}

.pt-profile-side__member i {
  color: #49969c;
  font-size: 16px;
  line-height: 1;
}

/* Info list */
.pt-profile-side__info {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px dashed #e5eeed;
}

.pt-profile-side__info li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-profile-side__info-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pt-profile-side__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.pt-profile-side__info-text small {
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pt-profile-side__info-text strong {
  font-size: 13px;
  font-weight: 500;
  color: #262f40;
  word-break: break-word;
  line-height: 1.3;
}

.pt-profile-side__status {
  background: #e6f7ee;
  color: #10b981;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Tip card */
.pt-profile-side__tip {
  margin-top: 22px;
  width: 100%;
  background: linear-gradient(135deg, #eaf7f6 0%, #dcefee 100%);
  border: 1px solid #d6eeec;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.pt-profile-side__tip > div {
  flex: 1;
  min-width: 0;
}

.pt-profile-side__tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px -2px rgba(47, 143, 157, 0.25);
}

.pt-profile-side__tip strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #49969c;
  margin-bottom: 2px;
}

.pt-profile-side__tip p {
  margin: 0;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
}

/* ---------- Right form card ---------- */
.pt-profile-form-card {
  padding: 26px;
  height: 100%;
}

.pt-profile-form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.pt-profile-form-card__head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pt-profile-form-card__head h3 {
  font-size: 18px;
  font-weight: 500;
  color: #262f40;
  margin: 0 0 2px;
  line-height: 1.2;
}

.pt-profile-form-card__head p {
  margin: 0;
  font-size: 13px;
  color: #525252;
}

.pt-profile-form-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* ---------- Accordion ---------- */
.pt-accordion {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  margin-top: 20px;
}

.pt-accordion.is-open {
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.12);
}

.pt-accordion__header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.pt-accordion__header:hover {
  background: #ffffff;
}

.pt-accordion__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2f8f9d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pt-accordion__title {
  flex: 1;
  font-weight: 300;
  color: #262f40;
  font-size: 15px;
}

.pt-accordion__count {
  background: #e5e7eb;
  color: #525252;
  font-size: 12px;
  font-weight: 300;
  padding: 3px 9px;
  border-radius: 999px;
}

.pt-accordion__chev {
  color: #525252;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
}

.pt-accordion__body {
  padding: 0px 20px 19px;
  /* border-top: 1px solid #E5E7EB; */
}

.pt-sub-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 16px 0 22px;
  align-items: center;
}

.pt-sub-summary > div {
  display: flex;
  flex-direction: column;
}

.pt-sub-summary span {
  font-size: 11px;
  font-weight: 300;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pt-sub-summary strong {
  color: #262f40;
  font-size: 15px;
  font-weight: 300;
}

/* ---------- Notifications ---------- */
.pt-notif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.pt-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  transition: all 0.2s;
  /* border-left: solid 3px transparent; */
}

.pt-notif-item:hover,
.pt-notif-item.highlighted-notification {
  background: #e6f4f3;
  border-color: #bde6e2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
}

.pt-notif-item.is-unread {
  border-left: 4px solid #49969c;
  position: relative;
  margin-top: 10px;
}

.pt-notif-item.is-clickable {
  cursor: pointer;
}

/* .pt-notif-item.is-clickable:hover {
  background: #DFF1EF;
  border-color: var(--pt-tone, #2F8F9D);
  box-shadow: 0 6px 16px rgba(47, 143, 157, 0.14);
  transform: translateY(-1px);
} */

.pt-notif-item.is-clickable:focus-visible {
  outline: 2px solid var(--pt-tone, #2f8f9d);
  outline-offset: 2px;
}

.pt-notif-item__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pt-tone, #2f8f9d);
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
  animation: pt-notif-pulse 1.6s ease-in-out infinite;
}

@keyframes pt-notif-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(47, 143, 157, 0.05);
  }
}

.pt-notif-item__pill {
  display: inline-block;
  /* margin-top: 8px; */
  padding: 1px 8px;
  border-radius: 999px;
  background: #06c388;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.pt-notif-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #49969c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pt-notif-item.is-unread .pt-notif-item__icon {
  background: #49969c;
}

.pt-notif-item__body {
  flex: 1;
  min-width: 0;
}

.pt-notif-item__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.pt-notif-item__row strong {
  color: #262f40;
  font-size: 16px;
  font-weight: 300;
}

.pt-notif-item.is-read .pt-notif-item__row strong {
  font-weight: 500;
  color: #525252;
}

.pt-notif-item__time {
  font-size: 14px;
  color: #525252;
  font-weight: 300;
  white-space: nowrap;
}

.pt-notif-item__body p {
  margin: 4px 0 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
}

.pt-notif-item__toggle {
  /* background: rgb(163 36 36); */
  border: none;
  /* color: #525252; */
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  align-self: flex-start;
  background: rgb(73 150 156 / 41%);
  color: #49969c;
  margin-top: 5px;
}

.pt-notif-item__toggle:hover:not(:disabled) {
  background: #e5e7eb;
  color: #49969c;
}

/* .pt-notif-item.is-unread .pt-notif-item__toggle {
  color: #fff;
  background: #06c388;
} */

.pt-notif-item.is-unread .pt-notif-item__toggle {
  color: #000;
  background: none;
  border: none;
}

.pt-notif-item__toggle.promotion {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3f2fd;
  color: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
}

.pt-notif-item__toggle:disabled {
  cursor: default;
  opacity: 1;
  background: none;
}

.pt-empty {
  text-align: center;
  padding: 40px 20px;
  color: #525252;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.pt-empty i {
  font-size: 56px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.pt-empty h3 {
  font-size: 18px;
  color: #262f40;
  margin: 0 0 4px;
}

/* ---------- Payment modal ---------- */
.pt-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: pt-fade-in 0.2s ease;
}

.pt-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.45);
  animation: pt-slide-up 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes pt-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pt-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pt-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #525252;
  cursor: pointer;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pt-modal__close:hover {
  background: #e5e7eb;
  color: #262f40;
}

.pt-modal__header h2 {
  font-size: 22px;
  font-weight: 300;
  color: #262f40;
  margin: 6px 0 4px;
}

.pt-modal__header p {
  color: #525252;
  font-size: 13px;
  margin: 0;
}

.pt-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f7f6;
  color: #49969c;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
}

.pt-modal__amount {
  margin: 18px 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f4f9f9, #ffffff);
  border: 1px solid #e5eeed;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pt-modal__amount span {
  color: #525252;
  font-size: 13px;
  font-weight: 300;
}

.pt-modal__amount strong {
  font-size: 22px;
  font-weight: 300;
  color: #262f40;
}

.pt-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pt-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pt-modal__field span {
  font-size: 12px;
  font-weight: 300;
  color: #525252;
  letter-spacing: 0.02em;
}

.pt-modal__field input {
  width: 100%;
  padding: 11px 14px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  border-radius: 6px;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pt-modal__field input:focus {
  outline: none;
  border-color: #49969c;
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.18);
}

.pt-modal__card-wrapper {
  position: relative;
}

.pt-modal__card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #525252;
  font-size: 22px;
  pointer-events: none;
}

.pt-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pt-modal__error {
  color: #ef4444;
  font-size: 11px;
  margin-top: 2px;
}

.pt-modal__submit {
  width: 100%;
  background: #49969c;
  color: #ffffff;
  border: 1px solid #49969c;
  padding: 8px 30px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: 0.3s ease-in all;
  font-family: inherit;
}

.pt-modal__submit:hover:not(:disabled) {
  background: #49969c;
  color: #ffffff;
  transform: scale(1.05);
}

.pt-modal__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pt-modal__legal {
  text-align: center;
  color: #525252;
  font-size: 11px;
  margin: 8px 0 0;
}

.pt-modal__state {
  text-align: center;
  padding: 28px 8px 8px;
}

.pt-modal__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid #e8f7f6;
  border-top-color: #49969c;
  animation: pt-spin 0.8s linear infinite;
  margin: 0 auto 18px;
}

@keyframes pt-spin {
  to {
    transform: rotate(360deg);
  }
}

.pt-modal__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #10b981);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  box-shadow: 0 14px 28px -10px rgb(73 150 156 / 14%);
  animation: pt-pop 0.4s ease;
}

@keyframes pt-pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pt-modal__state h2 {
  font-size: 22px;
  color: #262f40;
  margin: 0 0 6px;
}

.pt-modal__state p {
  color: #525252;
  font-size: 14px;
  margin: 0 0 18px;
}

/* =====================================================================
   About Us page
   ===================================================================== */
.about-page {
  padding: 60px 0 80px;
  background: #ffffff;
  color: #262f40;
}

.about-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.about-hero__eyebrow {
  display: inline-block;
  background: #e8f7f6;
  color: #49969c;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.15;
  margin: 0 0 18px;
}

.about-hero p {
  font-size: 16px;
  color: #525252;
  line-height: 1.7;
  margin: 0;
}

.about-mission {
  background: linear-gradient(135deg, #f4f9f9, #ffffff);
  border-radius: 24px;
  padding: 42px;
  margin-bottom: 60px;
  border: 1px solid #e5eeed;
}

.about-mission__pill {
  display: inline-block;
  background: #ffffff;
  color: #49969c;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 12px;
  border: 1px solid #e5eeed;
}

.about-mission h2 {
  font-size: 30px;
  font-weight: 300;
  color: #262f40;
  line-height: 1.2;
  margin: 0 0 16px;
}

.about-mission p {
  color: #525252;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.about-mission__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-mission__stats > div {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  border: 1px solid #e5eeed;
  transition: all 0.25s ease;
}

.about-mission__stats > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -16px rgba(15, 23, 42, 0.18);
  border-color: #49969c;
}

.about-mission__stats strong {
  display: block;
  color: #49969c;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.about-mission__stats span {
  display: block;
  color: #525252;
  font-size: 13px;
  margin-top: 6px;
}

.about-section-title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 24px;
  text-align: center;
}

.about-values {
  margin-bottom: 60px;
}

.about-value-card {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: all 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.18);
  border-color: #49969c;
}

.about-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f7f6, #ffffff);
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}

.about-value-card h3 {
  font-size: 17px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 8px;
}

.about-value-card p {
  color: #525252;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.about-team {
  margin-bottom: 60px;
}

.about-team-card {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.about-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.18);
}

.about-team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 12px;
}

.about-tone-teal .about-team-card__avatar {
  background: linear-gradient(135deg, #2f8f9d, #2f8f9d);
}

.about-tone-purple .about-team-card__avatar {
  background: linear-gradient(135deg, #7c3aed, #7c3aed);
}

.about-tone-orange .about-team-card__avatar {
  background: linear-gradient(135deg, #f4a261, #c66e2e);
}

.about-tone-blue .about-team-card__avatar {
  background: linear-gradient(135deg, #2563eb, #2563eb);
}

.about-team-card strong {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #262f40;
}

.about-team-card span {
  display: block;
  color: #525252;
  font-size: 12px;
  margin-top: 4px;
}

.about-cta {
  background: linear-gradient(135deg, #2f8f9d, #49969c);
  border-radius: 24px;
  padding: 42px;
  text-align: center;
  color: #ffffff;
}

.about-cta h2 {
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 8px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0 0 20px;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #49969c;
  padding: 14px 32px;
  border-radius: 36px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: 0.3s ease-in all;
  border: 1px solid #ffffff;
}

.about-cta__btn:hover {
  background: #ffffff;
  color: #49969c;
  transform: scale(1.05);
}

.edit-name input {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
}

.edit-name input::placeholder {
  opacity: 0.8;
}

.edit-name textarea {
  background: #fff;
  border-radius: 6px;
  padding: 10px 10px;
  color: #525252;
  border: solid 1px #1f2b3e40;
  font-size: 14px;
  resize: inherit;
}

.edit-name textarea::placeholder {
  opacity: 0.8;
}

.doc-profile-new {
  margin-bottom: 15px;
}

/* ============================================================ */
/* Doctor profile Ã¢â‚¬â€ modern detail page                          */
/* ============================================================ */

.pt-doctor-detail .pt-back-link {
  margin-bottom: 14px;
}

/* Spacing between stacked sidebar cards and right-column sections */
.pt-doctor-detail .pt-doc-side + .pt-doc-side,
.pt-doctor-detail .pt-doc-section + .pt-doc-section {
  margin-top: 20px;
}

/* Spacing between the stats strip and the two-column body */
.pt-doctor-detail .pt-doc-stats + .row {
  margin-top: 20px;
}

/* Slightly roomier list inside the sidebar Quick Info card */
.pt-doctor-detail .pt-doc-side__list {
  gap: 16px;
}

/* ---------- Hero (matches the dashboard welcome banner) ---------- */
.pt-doc-hero {
  position: relative;
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #5bbfb6 100%);
  border-radius: 22px;
  padding: 28px 32px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 10px 28px -12px rgba(47, 143, 157, 0.45);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.pt-doc-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pt-doc-hero__bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pt-doc-hero__bubbles span:nth-child(1) {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
  background: rgba(255, 255, 255, 0.1);
}

.pt-doc-hero__bubbles span:nth-child(2) {
  width: 130px;
  height: 130px;
  bottom: -50px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.pt-doc-hero__bubbles span:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 240px;
  background: rgba(255, 255, 255, 0.1);
}

.pt-doc-hero__bubbles span:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 90px;
  right: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.pt-doc-hero__photo {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.3);
}

.pt-doc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 100%;
}

.pt-doc-hero__photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pt-doc-hero__verified {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
  z-index: 2;
}

.pt-doc-hero__content {
  flex: 1;
  min-width: 240px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.pt-doc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.pt-doc-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

.pt-doc-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  margin: 14px 0 6px;
  line-height: 1.2;
}

.pt-doc-hero__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.pt-doc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.pt-doc-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pt-doc-hero__meta-item i {
  font-size: 14px;
}

.pt-doc-hero__meta-item small {
  opacity: 0.85;
  font-size: 12px;
}

.pt-doc-hero__meta-item .ri-star-fill {
  color: #fbbf24;
}

.pt-doc-hero__meta-item--match {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.pt-doc-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.pt-doc-hero__cta {
  background: #ffffff;
  color: #49969c;
  border-radius: 36px;
  padding: 8px 30px;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease-in all;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.pt-doc-hero__cta:hover {
  background: #ffffff;
  color: #49969c;
  transform: scale(1.05);
}

.pt-doc-hero__icons {
  display: flex;
  gap: 8px;
}

.pt-doc-hero__icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pt-doc-hero__icon-btn:hover {
  background: #ffffff;
  color: #49969c;
  border-color: #ffffff;
  transform: scale(1.05);
}

.pt-doc-hero__icon-btn.is-active {
  background: #ffffff;
  color: #e6526f;
  border-color: #ffffff;
}

/* ---------- Stats strip ---------- */
.pt-doc-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pt-doc-stats--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pt-doc-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.pt-doc-stat:hover {
  transform: translateY(-6px);
}

.pt-doc-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.pt-doc-stat--green .pt-doc-stat__icon {
  background: #e5f7ee;
  color: #1f9d55;
}

.pt-doc-stat--teal .pt-doc-stat__icon {
  background: #e8f7f6;
  color: #49969c;
}

.pt-doc-stat--purple .pt-doc-stat__icon {
  background: #efebfb;
  color: #6e55c3;
}

.pt-doc-stat--orange .pt-doc-stat__icon {
  background: #fff1dc;
  color: #d77f00;
}

.pt-doc-stat__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.pt-doc-stat__num {
  font-size: 20px;
  font-weight: 300;
  color: #262f40;
}

.pt-doc-stat__lbl {
  font-size: 13px;
  color: #525252;
  margin-top: 2px;
}

/* ---------- Sidebar (Quick info / Slots / Contact) ---------- */
.pt-doc-side {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.pt-doc-side:hover {
  transform: translateY(-6px);
}

.pt-doc-side__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262f40;
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5eeed;
}

.pt-doc-side__title i {
  color: #49969c;
  font-size: 19px;
}

.pt-doc-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.pt-doc-side__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.profile-doctor-bubble {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.pt-doc-side__list li > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
}

.pt-doc-side__list li > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.pt-doc-side__list li small {
  color: #525252;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pt-doc-side__list li strong {
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
  word-break: break-word;
}

.pt-doc-side__next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e8f7f6;
  color: #49969c;
  border: 1px solid #bde6e2;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.pt-doc-side__next i {
  color: #49969c;
  font-size: 16px;
}

.pt-doc-side__next strong {
  color: #262f40;
  font-weight: 500;
}

.pt-doc-slots-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.pt-doc-slots-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 12px;
  padding: 8px 6px;
  color: #262f40;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pt-doc-slots-tab strong {
  font-size: 13px;
  color: #262f40;
  font-weight: 500;
}

.pt-doc-slots-tab small {
  font-size: 11px;
  color: #525252;
}

.pt-doc-slots-tab:hover {
  border-color: #49969c;
  color: #49969c;
  transform: scale(1.03);
}

.pt-doc-slots-tab.is-active {
  background: #49969c;
  border-color: #49969c;
}

.pt-doc-slots-tab.is-active strong,
.pt-doc-slots-tab.is-active small {
  color: #ffffff;
}

.pt-doc-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pt-doc-slots-grid > .pt-doc-slot-pill:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

.pt-doc-slot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #49969c;
  color: #49969c;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pt-doc-slot-pill i {
  font-size: 13px;
}

.pt-doc-slot-pill:hover {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
  transform: scale(1.05);
}

.pt-doc-side__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pt-doc-side__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.pt-doc-side__contact li i {
  color: #49969c;
  font-size: 16px;
  flex: 0 0 auto;
}

/* ---------- Right column sections ---------- */
.pt-doc-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid #e5eeed;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.pt-doc-section:hover {
  transform: translateY(-6px);
}

.pt-doc-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.pt-doc-section__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.pt-doc-section__icon--teal {
  background: #e8f7f6;
  color: #49969c;
}

.pt-doc-section__icon--green {
  background: #e5f7ee;
  color: #1f9d55;
}

.pt-doc-section__icon--purple {
  background: #efebfb;
  color: #6e55c3;
}

.pt-doc-section__icon--orange {
  background: #fff1dc;
  color: #d77f00;
}

.pt-doc-section__head-text {
  flex: 1;
  min-width: 0;
}

.pt-doc-section__head-text h3 {
  font-size: 18px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 2px;
  line-height: 1.3;
}

.pt-doc-section__head-text p {
  color: #525252;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.pt-doc-section__link {
  border: none;
  background: none;
  color: #49969c;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  flex: 0 0 auto;
}

.pt-doc-section__link:hover {
  color: #49969c;
  transform: translateX(2px);
}

.pt-doc-section__body {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Tags */
.pt-doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  color: #262f40;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pt-doc-tag:hover {
  border-color: #49969c;
  color: #49969c;
  transform: scale(1.03);
}

.pt-doc-tag i {
  color: #1f9d55;
  font-size: 14px;
}

/* Education timeline */
.pt-doc-edu {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 0 28px;
  border-left: 2px solid #e5eeed;
  display: grid;
  gap: 14px;
}

.pt-doc-edu li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pt-doc-edu__dot {
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #49969c;
  box-shadow: 0 0 0 3px #ffffff;
}

.pt-doc-edu li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
  min-width: 0;
}

.pt-doc-edu li strong {
  color: #262f40;
  font-size: 14px;
  font-weight: 500;
}

.pt-doc-edu li small {
  color: #525252;
  font-size: 13px;
}

.pt-doc-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-doc-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #262f40;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pt-doc-cert:hover {
  border-color: #49969c;
  color: #49969c;
  transform: scale(1.03);
}

.pt-doc-cert i {
  color: #49969c;
  font-size: 14px;
}

/* Awards */
.pt-doc-awards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pt-doc-awards li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  color: #525252;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.25s ease;
}

.pt-doc-awards li:hover {
  border-color: #f2c97d;
  transform: translateX(3px);
}

.pt-doc-awards li i {
  color: #d77f00;
  font-size: 18px;
  flex: 0 0 auto;
}

.pt-card.pt-section.notificatio-pt {
  background: none;
  border: none;
  margin-top: 0px;
}

/* .pt-card.pt-section.payment-his {
  margin-top: 20px;
} */

.quick-recent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f9d, #bde6e2);
  border-radius: 4px 4px 0 0;
}

.pt-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ============================================================ */
/* Procedure detail page                                         */
/* ============================================================ */
.pt-proc-detail .pt-back-link {
  margin-bottom: 14px;
}

/* Spacing between sections on the procedure detail page */
.pt-proc-detail .pt-proc-hero + .pt-doc-stats,
.pt-proc-detail .pt-doc-stats + .pt-doc-section,
.pt-proc-detail .pt-doc-section + .pt-doc-section {
  margin-top: 20px;
}

.pt-proc-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 10px;
  padding: 18px;
  overflow: hidden;
}

.pt-proc-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(135deg, #f4f9f9, #e8f7f6);
}

.pt-proc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.pt-proc-hero__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
  font-size: 64px;
}

.pt-proc-hero__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #49969c;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -6px rgba(47, 143, 157, 0.35);
}

.pt-proc-hero__category i {
  font-size: 13px;
}

.pt-proc-hero__content {
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pt-proc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #49969c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pt-proc-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49969c;
}

.pt-proc-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pt-proc-hero__desc {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pt-proc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-proc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f9f9;
  border: 1px solid #e5eeed;
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
}

.pt-proc-hero__chip i {
  color: #49969c;
  font-size: 14px;
}

/* ---------- What to Expect Ã¢â‚¬â€ row of phase cards (inside .pt-doc-section) ---------- */
.pt-timeline {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pt-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.pt-timeline__card {
  background: #f8fafb;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 18px 20px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.pt-timeline__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pt-tone, #2f8f9d);
  opacity: 0.9;
}

.pt-timeline__card:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.pt-timeline__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5eeed;
}

.pt-timeline__phase {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pt-tone-soft, #e8f7f6);
  color: var(--pt-tone, #2f8f9d);
}

.pt-timeline__phase i {
  font-size: 13px;
}

.pt-timeline__title {
  font-size: 16px;
  font-weight: 400;
  color: #262f40;
  margin: 0;
  line-height: 1.35;
}

.pt-timeline__timing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #525252;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 999px;
  padding: 4px 10px;
}

.pt-timeline__timing i {
  color: #49969c;
  font-size: 13px;
}

.pt-timeline__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pt-timeline__points li {
  position: relative;
  padding-left: 20px;
  color: #525252;
  font-size: 14px;
  line-height: 1.55;
}

.pt-timeline__points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pt-tone, #2f8f9d);
}

/* ============================================================ */
/* Device detail page                                            */
/* ============================================================ */
.pt-device-detail .pt-back-link {
  margin-bottom: 14px;
}

.pt-device-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px -16px rgba(47, 143, 157, 0.18);
}

.pt-device-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #f4f9f9, #e8f7f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-device-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.pt-device-hero__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
  font-size: 72px;
}

.pt-device-hero__cert {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -6px rgba(16, 185, 129, 0.3);
}

.pt-device-hero__cert i {
  font-size: 14px;
}

.pt-device-hero__content {
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-device-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #49969c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pt-device-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49969c;
}

.pt-device-hero__title {
  font-size: 28px;
  font-weight: 300;
  color: #262f40;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pt-device-hero__desc {
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pt-device-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-device-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f9f9;
  border: 1px solid #e5eeed;
  color: #262f40;
  font-size: 12px;
  font-weight: 400;
}

.pt-device-hero__chip i {
  color: #49969c;
  font-size: 14px;
}

/* ---------- Accented info cards (Benefits / Safety) ---------- */
.pt-card.pt-card--accent {
  position: relative;
  border-color: #e5eeed;
  height: 100%;
}

.pt-card.pt-card--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--pt-tone, #2f8f9d);
  border-radius: 4px 0 0 4px;
}

.pt-card.pt-card--accent .pt-card__title i {
  color: var(--pt-tone, #2f8f9d);
}

.pt-card.pt-card--accent .pt-bullet-list li::before {
  background: var(--pt-tone, #2f8f9d);
}

.disclamer-ftr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.f-logo p {
  margin-bottom: 0px;
  padding-top: 21px;
  color: #fff;
  font-size: 14px;
}

/* =====================================================================
   SurgMatch Ã¢â‚¬â€ Assessment Chat (embedded mode)
   --------------------------------------------------------------------
   These rules ONLY apply when AssessmentChat is rendered with the
   `embedded` prop (see src/app/(public)/page.tsx). Every selector is
   prefixed with `.acm-embed` so the standalone /patient/assessment
   page (AssessmentChatClient.tsx) is completely unaffected.
   Responsive overrides for this block live in responsive.css.
   ===================================================================== */

.acm-embed.chat-shell {
  position: relative;
  height: 640px;
  min-height: 0;
  max-width: 1180px;
  width: calc(100% - 32px);
  margin: 60px auto;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(13, 46, 67, 0.18);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: 0.5s;
}

.acm-embed.chat-shell.is-sidebar-collapsed {
  grid-template-columns: 64px 1fr;
}

.acm-embed .chat-sidebar__toggle {
  display: none;
}

.acm-embed .chat-sidebar {
  position: relative;
  inset: auto;
  height: 100%;
  width: 100%;
  transform: none !important;
  border-right: 1px solid #e7eaec;
  background: #f7faf9;
  z-index: 1;
}

.acm-embed .chat-sidebar.is-collapsed {
  width: 100%;
}

.acm-embed .chat-sidebar__overlay {
  display: none;
}

.acm-embed .chat-sidebar__action--danger {
  display: none;
}

.acm-embed .chat-sidebar__top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px 14px;
  border-bottom: 1px solid #eef2f1;
  background: #ffffff;
  flex-shrink: 0;
  min-height: 64px;
}

.acm-embed .chat-sidebar__brand {
  display: inline-flex !important;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  padding: 2px 4px;
  margin: 0;
}

.acm-embed .chat-sidebar__brand-logo {
  display: block !important;
  visibility: visible !important;
  height: 34px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.acm-embed .chat-sidebar__collapse {
  display: inline-flex !important;
  visibility: visible !important;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e5eeed;
  background: #ffffff;
  color: #0d2e43;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.acm-embed .chat-sidebar__collapse:hover {
  background: rgba(73, 150, 156, 0.12);
  border-color: rgba(73, 150, 156, 0.35);
  color: #0d2e43;
}

.acm-embed .chat-sidebar__footer {
  border-top: none;
}

.acm-embed .chat-sidebar__footer button.chat-sidebar__action {
  text-align: center;
  justify-content: center;
  background: rgba(73, 150, 156, 0.12);
}

.acm-embed .chat-sidebar.is-collapsed .chat-sidebar__top {
  justify-content: center;
  padding: 18px 8px 14px;
}

.acm-embed .chat-sidebar.is-collapsed .chat-sidebar__collapse {
  display: inline-flex !important;
}

.acm-embed .chat-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  position: relative;
}

/* Visual "header strip" on the chat column that matches the height of
   .acm-embed .chat-sidebar__top so the first bot message lines up
   below the sidebar logo bar instead of bleeding into it. */
.acm-embed .chat-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f1;
  z-index: 1;
  pointer-events: none;
}

.acm-embed .chat-main__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 84px 32px 12px;
  position: relative;
  z-index: 0;
}

.acm-embed .chat-composer {
  border-top: 1px solid #eef2f1;
  padding: 14px 20px 18px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.acm-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(73, 150, 156, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(189, 230, 226, 0.18),
      transparent 60%
    );
  z-index: -1;
  pointer-events: none;
  border-radius: 32px;
}

aside.chat-sidebar.is-collapsed .chat-sidebar__top a.chat-sidebar__brand {
  display: none !important;
}

/* ---------- Custom slim teal scrollbar ----------
   Replaces the bulky default OS scrollbar on every scrollable area
   inside the embedded chat (messages list + sidebar history). Works
   in Chromium/WebKit via ::-webkit-scrollbar and in Firefox via
   `scrollbar-width` / `scrollbar-color`. */
.acm-embed .chat-main__messages,
.acm-embed .chat-sidebar,
.acm-embed .chat-sidebar__history {
  scrollbar-width: thin;
  scrollbar-color: rgba(73, 150, 156, 0.45) transparent;
}

.acm-embed .chat-main__messages::-webkit-scrollbar,
.acm-embed .chat-sidebar::-webkit-scrollbar,
.acm-embed .chat-sidebar__history::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-track,
.acm-embed .chat-sidebar::-webkit-scrollbar-track,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-thumb,
.acm-embed .chat-sidebar::-webkit-scrollbar-thumb,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-thumb {
  background: rgba(73, 150, 156, 0.45);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-thumb:hover,
.acm-embed .chat-sidebar::-webkit-scrollbar-thumb:hover,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-thumb:hover {
  background: rgba(73, 150, 156, 0.7);
  background-clip: padding-box;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-button,
.acm-embed .chat-sidebar::-webkit-scrollbar-button,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.acm-embed .chat-main__messages::-webkit-scrollbar-corner,
.acm-embed .chat-sidebar::-webkit-scrollbar-corner,
.acm-embed .chat-sidebar__history::-webkit-scrollbar-corner {
  background: transparent;
}

/* ============================================================
   CARE PLAN DOCUMENT (/patient/care-plan) Ã¢â‚¬â€ image-matched layout
   Full-width attractive summary with tinted cards, side
   illustrations, 4-phase recovery timeline and clean typography.
   ============================================================ */
.care-plan-doc-page {
  background: transparent;
  padding: 0;
  width: 100%;
  font-family: "DM Sans", sans-serif;
}

.care-plan-doc {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 18px;
  padding: 28px 30px 24px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  letter-spacing: 0.04em;
}

.care-plan-doc i,
.care-plan-doc [class^="ri-"],
.care-plan-doc [class*=" ri-"] {
  font-style: normal;
  line-height: 1;
}

/* Lock down icon sizing inside the doc Ã¢â‚¬â€ beats any global !important rules
   coming from .cp-guide-page or other ancestors. */
.care-plan-doc .care-plan-doc__hero-mark i {
  font-size: 16px !important;
}

.care-plan-doc .care-plan-doc__patient-illo i {
  font-size: 60px !important;
}

.care-plan-doc .care-plan-doc__patient-pin i {
  font-size: 14px !important;
}

.care-plan-doc .care-plan-doc__patient-row-icon i {
  font-size: 18px !important;
}

.care-plan-doc .care-plan-doc__card-icon i {
  font-size: 17px !important;
}

.care-plan-doc .care-plan-doc__list-tick i {
  font-size: 17px !important;
}

.care-plan-doc .care-plan-doc__card-illo-main {
  font-size: 92px !important;
}

.care-plan-doc .care-plan-doc__card-illo-sub i {
  font-size: 52px !important;
}

.care-plan-doc .care-plan-doc__chat-ic--lg {
  font-size: 92px !important;
}

.care-plan-doc .care-plan-doc__chat-ic--sm {
  font-size: 66px !important;
}

.care-plan-doc .care-plan-doc__chat-sparkle--1 {
  font-size: 22px !important;
}

.care-plan-doc .care-plan-doc__chat-sparkle--2 {
  font-size: 14px !important;
}

.care-plan-doc .care-plan-doc__btn i {
  font-size: 16px !important;
}

/* ----- HERO BANNER (gradient + floating shapes) ----- */
.care-plan-doc__hero {
  position: relative;
  border-radius: 20px;
  padding: 20px 30px 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #2f8f9d 0%, #49969c 55%, #5bbfb6 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px -22px rgba(47, 143, 157, 0.5);
  isolation: isolate;
}

.care-plan-doc__hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
  pointer-events: none;
}

.care-plan-doc__hero-shape--1 {
  width: 240px;
  height: 240px;
  top: -90px;
  right: -60px;
}

.care-plan-doc__hero-shape--2 {
  width: 140px;
  height: 140px;
  bottom: -60px;
  right: 180px;
  background: rgba(255, 255, 255, 0.08);
}

.care-plan-doc__hero-shape--3 {
  width: 70px;
  height: 70px;
  top: 40px;
  right: 300px;
  background: rgba(255, 255, 255, 0.18);
}

.care-plan-doc__hero-spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}

.care-plan-doc__hero-spark--1 {
  top: 28px;
  right: 80px;
  transform: rotate(15deg);
}

.care-plan-doc__hero-spark--2 {
  bottom: 28px;
  right: 22px;
  transform: rotate(-12deg);
  color: rgba(255, 255, 255, 0.5);
}

.care-plan-doc .care-plan-doc__hero-spark--1 {
  font-size: 26px !important;
}

.care-plan-doc .care-plan-doc__hero-spark--2 {
  font-size: 18px !important;
}

.care-plan-doc__hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.care-plan-doc__hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.care-plan-doc__hero-mark {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.care-plan-doc__hero-mark i {
  color: #ffffff;
}

.care-plan-doc .care-plan-doc__hero-mark i {
  font-size: 18px !important;
}

.care-plan-doc__hero-brand {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.care-plan-doc__hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
  backdrop-filter: blur(6px);
  margin-left: 4px;
}

.care-plan-doc__hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fef0d6;
  box-shadow: 0 0 0 3px rgba(254, 240, 214, 0.3);
}

.care-plan-doc__hero-title {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.care-plan-doc__hero-title span {
  color: #fef0d6;
  font-weight: 500;
}

.care-plan-doc__hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0px;
  max-width: 640px;
  line-height: 1.6;
  font-weight: 300;
}

.care-plan-doc__hero-sub strong {
  color: #fef0d6;
  font-weight: 700;
}

/* ----- PATIENT INFO ----- */
.care-plan-doc__patient {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 14px;
  padding: 22px 26px;
}

.care-plan-doc__patient-visual {
  position: relative;
  width: 150px;
  height: 150px;
  min-width: 150px;
  border-radius: 14px;
  background: #e8f7f6;
  border: 1px solid #e5eeed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.care-plan-doc__patient-visual img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.care-plan-doc__patient-illo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
}

.care-plan-doc__patient-illo i {
  color: #49969c;
}

.care-plan-doc__patient-pin {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(73, 150, 156, 0.18);
  border: 1px solid #e5eeed;
}

.care-plan-doc__patient-pin i {
  color: #49969c;
}

.care-plan-doc__patient-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.care-plan-doc__patient-row {
  display: grid;
  grid-template-columns: 22px 160px 1fr;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eef2f4;
}

.care-plan-doc__patient-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.care-plan-doc__patient-row-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
}

.care-plan-doc__patient-row-icon i {
  color: #49969c;
}

.care-plan-doc__patient-label {
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__patient-value {
  color: #525252;
  font-weight: 300;
}

.care-plan-doc__patient-value--accent {
  color: #49969c;
  font-weight: 500;
}

/* ----- GENERIC CARD ----- */
.care-plan-doc__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eef0;
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}

.care-plan-doc__card:hover {
  transform: translateY(-5px);
}

/* All card tint variants share plain white background */
.care-plan-doc__card--lavender,
.care-plan-doc__card--sky,
.care-plan-doc__card--cream,
.care-plan-doc__card--teal {
  background: #ffffff;
  border-color: #e5eeed;
}

.care-plan-doc__card-body {
  position: relative;
  z-index: 1;
  max-width: 78%;
}

.care-plan-doc__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.care-plan-doc__card-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.care-plan-doc__card-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Card icons Ã¢â‚¬â€ green/blue keep site teal; orange + teal get their own tones */
.care-plan-doc__card-icon--green,
.care-plan-doc__card-icon--blue {
  background: #e8f7f6;
  color: #49969c;
}

.care-plan-doc__card-icon--green i,
.care-plan-doc__card-icon--blue i {
  color: #49969c;
}

.care-plan-doc__card-icon--orange {
  background: #fde6c4;
  color: #f59e0b;
}

.care-plan-doc__card-icon--orange i {
  color: #f59e0b;
}

.care-plan-doc__card-icon--teal {
  background: #cfe7e8;
  color: #49969c;
}

.care-plan-doc__card-icon--teal i {
  color: #49969c;
}

.care-plan-doc__card-title {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  color: #1f2a37;
}

/* Title tones */
.care-plan-doc__card-title--green,
.care-plan-doc__card-title--blue {
  color: #49969c;
}

.care-plan-doc__card-title--orange {
  color: #f59e0b;
}

.care-plan-doc__card-title--teal {
  color: #49969c;
}

.care-plan-doc__card-note {
  font-size: 12px;
  color: #525252;
  font-style: italic;
  margin-left: auto;
}

/* Decorative side illustrations on Recommended Plan & Questions */
.care-plan-doc__card-illo {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 0;
}

.care-plan-doc__card-illo--plan .care-plan-doc__card-illo-bg {
  display: none;
}

.care-plan-doc__card-illo-main {
  position: absolute;
  top: 14px;
  left: 22px;
  color: #49969c;
  opacity: 1;
}

.care-plan-doc__card-illo-sub {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    #d6ecec 0%,
    #e8f7f6 55%,
    rgba(232, 247, 246, 0.3) 78%,
    transparent 90%
  );
  border: none;
  box-shadow: none;
}

.care-plan-doc__card-illo-sub i {
  color: #49969c;
}

.care-plan-doc__card-illo--chat {
  width: 150px;
  height: 120px;
  right: 22px;
}

.care-plan-doc__chat-ic {
  position: absolute;
  color: #49969c;
  opacity: 0.55;
  line-height: 1;
}

.care-plan-doc__chat-ic--lg {
  top: 4px;
  left: 0;
}

/* Small bubble pulled in close to overlap the large one */
.care-plan-doc__chat-ic--sm {
  bottom: 4px;
  right: 4px;
  opacity: 0.4;
}

/* Decorative sparkles + dots scattered around bubbles */
.care-plan-doc__chat-sparkle {
  position: absolute;
  color: #49969c;
  opacity: 0.4;
}

.care-plan-doc__chat-sparkle--1 {
  top: -4px;
  right: 22px;
  transform: rotate(15deg);
}

.care-plan-doc__chat-sparkle--2 {
  top: 28px;
  right: 6px;
  opacity: 0.3;
  transform: rotate(-20deg);
}

.care-plan-doc__chat-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #49969c;
  opacity: 0.4;
}

.care-plan-doc__chat-dot--1 {
  top: 12px;
  right: 38px;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.care-plan-doc__chat-dot--2 {
  top: 50px;
  right: 2px;
  width: 6px;
  height: 6px;
}

.care-plan-doc__chat-dot--3 {
  bottom: 14px;
  left: 6px;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

/* ----- RECOMMENDED PLAN ----- */
.care-plan-doc__plan-name {
  font-size: 15px;
  font-weight: 500;
  color: #1f2a37;
  margin: 6px 0 12px;
}

.care-plan-doc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.care-plan-doc__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  font-weight: 300;
}

.care-plan-doc__list-tick {
  width: 25px;
  height: 25px;
  min-width: 16px;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: #e8f7f6;
  border-radius: 100%;
}

.care-plan-doc__list-tick i {
  color: #49969c;
}

.care-plan-doc__list-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #49969c;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Optional emphasised phrase keeps brand teal */
.care-plan-doc__list li em {
  color: #49969c;
  font-style: normal;
  font-weight: 500;
}

/* ----- RECOVERY TIMELINE ----- */
.care-plan-doc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.care-plan-doc__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* Recovery Timeline tags Ã¢â‚¬â€ keep multi-color for attractive look */
.care-plan-doc__tag--purple {
  background: #efe7fb;
  color: #7c3aed;
  border-color: #dccffa;
}

.care-plan-doc__tag--orange {
  background: #fdecd2;
  color: #f59e0b;
  border-color: #fbdfa9;
}

.care-plan-doc__tag--yellow {
  background: #fef0d0;
  color: #b45309;
  border-color: #fbe0a8;
}

.care-plan-doc__tag--blue {
  background: #dceaf7;
  color: #2563eb;
  border-color: #c4dbf3;
}

.care-plan-doc__tag--green {
  background: #e8f7f6;
  color: #49969c;
  border-color: #cfe7e8;
}

.care-plan-doc__tag--gray {
  background: #eef2f5;
  color: #475569;
  border-color: #e1e7eb;
}

/* ----- KEY INSTRUCTIONS ----- */
.care-plan-doc__instr {
  list-style: none;
  margin: 0;
  padding: 0;
}

.care-plan-doc__instr li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  border-bottom: 1px dashed #eef2f4;
  font-weight: 300;
}

.care-plan-doc__instr li:last-child {
  border-bottom: none;
}

.care-plan-doc__instr li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
}

.care-plan-doc__instr li strong {
  color: #1f2a37;
  font-weight: 500;
  margin-right: 4px;
}

/* ----- QUESTIONS FOR SURGEON ----- */
.care-plan-doc__list--questions li {
  font-size: 14px;
  color: #525252;
}

/* ----- DISCLAIMER ----- */
.care-plan-doc__disclaimer {
  font-size: 12px;
  color: #525252;
  font-style: italic;
  text-align: center;
  margin: 8px 6px 0;
  line-height: 1.55;
  padding-top: 12px;
  border-top: 1px dashed #e5eeed;
  font-weight: 300;
}

/* ----- FOOTER ACTIONS (matches site .cp-guide__cta pill style) ----- */
.care-plan-doc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 6px;
}

.care-plan-doc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #49969c;
  color: #49969c;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease-in all;
  text-decoration: none;
}

.care-plan-doc__btn:hover {
  transform: scale(1.05);
  background: #49969c;
  color: #ffffff;
}

.care-plan-doc__btn--primary {
  background: #49969c;
  color: #ffffff;
  border-color: #49969c;
}

.care-plan-doc__btn--primary:hover {
  background: #49969c;
  color: #ffffff;
}

/* ----- EMPTY STATE & SKELETON ----- */
/* ============================================================
   CARE PLAN LIST VIEW (invoice-style table inside a card)
   ============================================================ */
.care-plan-list {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  /* box-shadow: 0 0 40px #0000000d; */
  gap: 16px;
}

.care-plan-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.care-plan-list__head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  /* flex-wrap: wrap; */
  width: 100%;
  justify-content: end;
}

.care-plan-list__title {
  font-size: 22px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 4px;
}

.care-plan-list__sub {
  font-size: 14px;
  color: #525252;
  margin: 0;
  line-height: 1.5;
  max-width: 560px;
}

.care-plan-list__table-wrap {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.care-plan-list__table-scroll {
  /* overflow-x: auto; */
  border-radius: inherit;
  width: 100%;
  /* overflow-x: auto;
  overflow-y: hidden; */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #94c1c5 transparent;
}

/* Round the corner header cells so the gray header bg doesn't cut the radius */
.care-plan-list__table thead th:first-child {
  border-top-left-radius: 10px;
}

.care-plan-list__table thead th:last-child {
  border-top-right-radius: 10px;
}

/* Round the last row bottom corners as well */
.care-plan-list__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.care-plan-list__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Extra 15px breathing room on left + right edges of all cells */
.care-plan-list__table thead th:first-child,
.care-plan-list__table tbody td:first-child {
  padding-left: 15px;
}

.care-plan-list__table thead th:last-child,
.care-plan-list__table tbody td:last-child {
  padding-right: 15px;
  border-right: 1px solid #e5e7eb;
}

/* Close the bottom edge of the last row */
.care-plan-list__table tbody tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.care-plan-list__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Header row — light gray background, thin gray text */
.care-plan-list__table thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  padding: 10px 15px;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

.care-plan-list__table thead {
  background: #f6f8fa;
}

.care-plan-list__table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

.care-plan-list__table tbody tr:hover {
  background: #fafbfc;
}

/* Status / path pill — like the PAID badge */
.care-plan-list__path {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1.5;
}

.care-plan-list__path--surgical {
  background: #ede9fe;
  color: #7c3aed;
}

.care-plan-list__path--nonsurgical {
  background: #e6f7ee;
  color: #10b981;
}

.care-plan-list__date {
  font-size: 14px;
  color: #1f2a37;
  white-space: nowrap;
}

.care-plan-list__th-action,
.care-plan-list__action-cell {
  text-align: right;
  width: 1%;
  white-space: nowrap;
}

/* View action — pill button styled with SurgMatch theme (#49969C) */
.care-plan-list__view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: #eaf5f4;
  color: #49969c;
  border: 1px solid #b8ddd9;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.care-plan-list__view-btn:hover {
  background: #d8ecea;
  border-color: #49969c;
  color: #1f6f7b;
  box-shadow: 0 4px 10px -6px rgba(47, 143, 157, 0.45);
}

.care-plan-list__view-btn:active {
  transform: translateY(1px);
}

.care-plan-list__view-btn:focus-visible {
  outline: 2px solid #49969c;
  outline-offset: 2px;
}

.care-plan-list__view-btn i {
  font-size: 18px !important;
  line-height: 1;
  color: inherit;
}

/* ===========================================================
   Subscription-required modal (Care Plan list paywall)
   -----------------------------------------------------------
   Center-aligned alert dialog opened by the View icon when
   GET /chatbot/care-plans returns `subscription: false`.
   Visual language matches the existing patient theme:
   teal accent, soft shadows, rounded corners.
   =========================================================== */
.cp-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 32, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cp-subscribe-modal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 20px 60px rgba(8, 32, 48, 0.25);
  text-align: center;
  animation: cpSubscribeIn 180ms ease-out both;
}

@keyframes cpSubscribeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cp-subscribe-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #6b7280;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cp-subscribe-modal__close:hover {
  background: #f3f4f6;
  color: #111827;
}

.cp-subscribe-modal__close i {
  pointer-events: none;
  font-size: 18px;
}

.cp-subscribe-modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf5f4;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
}

.cp-subscribe-modal__title {
  font-size: 20px;
  font-weight: 500;
  color: #082030;
  margin: 0 0 8px;
  line-height: 1.3;
}

.cp-subscribe-modal__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
  margin: 0 0 22px;
}

.cp-subscribe-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #49969c;
  color: #ffffff;
  border: 1px solid #49969c;
  border-radius: 36px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  transition: 0.25s ease-in all;
  box-shadow: 0 8px 24px rgba(73, 150, 156, 0.25);
}

.cp-subscribe-modal__cta:hover {
  background: #3f8389;
  border-color: #3f8389;
  transform: scale(1.02);
}

.cp-subscribe-modal__cta i {
  font-size: 16px;
  line-height: 1;
}

/* ---------- Pagination (Care Plan list) ---------- */
.care-plan-list__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid #e5eeed;
  flex-wrap: wrap;
  margin-top: 10px;
}

.care-plan-list__pagination-info {
  font-size: 13px;
  color: #6b7280;
}

.care-plan-list__pagination-info strong {
  color: #1f2a37;
  font-weight: 600;
}

.care-plan-list__pagination-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.care-plan-list__page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d8e3e2;
  background: #ffffff;
  color: #1f2a37;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.care-plan-list__page-btn:hover:not(:disabled) {
  background: #eaf5f4;
  border-color: #b8ddd9;
  color: #49969c;
}

.care-plan-list__page-btn:focus-visible {
  outline: 2px solid #49969c;
  outline-offset: 2px;
}

.care-plan-list__page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.care-plan-list__page-btn--active,
.care-plan-list__page-btn--active:hover {
  background: #49969c;
  border-color: #49969c;
  color: #ffffff;
  box-shadow: 0 4px 10px -6px rgba(47, 143, 157, 0.55);
}

.care-plan-list__page-btn--nav i {
  font-size: 18px;
  line-height: 1;
}

.care-plan-list__page-ellipsis {
  min-width: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  user-select: none;
}

@media (max-width: 767px) {
  .care-plan-list__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .care-plan-list__pagination {
    justify-content: center;
  }

  .care-plan-list__pagination-info {
    width: 100%;
    text-align: center;
  }
}

.care-plan-doc__empty {
  background: #ffffff;
  border: 1px solid #e5eeed;
  border-radius: 18px;
  padding: 60px 32px;
  text-align: center;
  box-shadow: 0 12px 30px -22px rgba(31, 42, 55, 0.18);
  max-width: 600px;
  margin: 40px auto;
}

.care-plan-doc__empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.care-plan-doc__empty-icon i {
  font-size: 32px !important;
  color: #49969c;
}

.care-plan-doc__empty h2 {
  font-size: 22px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 8px;
}

.care-plan-doc__empty p {
  font-size: 14px;
  color: #525252;
  max-width: 480px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.care-plan-doc__skeleton {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 40px auto;
}

.care-plan-doc__sk-bar,
.care-plan-doc__sk-card {
  background: linear-gradient(90deg, #f0f3f5 25%, #e5eaed 50%, #f0f3f5 75%);
  background-size: 200% 100%;
  animation: care-plan-doc-shimmer 1.6s infinite;
  border-radius: 12px;
}

.care-plan-doc__sk-bar {
  height: 18px;
}

.care-plan-doc__sk-bar--40 {
  width: 40%;
}

.care-plan-doc__sk-bar--70 {
  width: 70%;
}

.care-plan-doc__sk-card {
  height: 160px;
}

@keyframes care-plan-doc-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   NEW DYNAMIC CARE PLAN SECTIONS
   (probability badge, conditions, why, treatment, procedure, doctor)
   ============================================================ */

/* ----- Possible Conditions list with probability bars ----- */
.care-plan-doc__cond-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.care-plan-doc__cond-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  cursor: pointer;
  padding: 16px 20px;
  border: 1px solid #eef2f4;
  border-radius: 12px;
  background: #ffffff;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02); */
  transition: all 0.25s ease;
}

.care-plan-doc__cond-item:hover {
  background: #fdfefe;
  border-color: #cfe7e8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(73, 150, 156, 0.08);
}

.care-plan-doc__cond-item--expanded {
  border-color: #cfe7e8;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(73, 150, 156, 0.05);
}

.care-plan-doc__cond-item--expanded:hover {
  background: #ffffff;
  border-color: #cfe7e8;
  transform: none;
  box-shadow: 0 4px 10px rgba(73, 150, 156, 0.05);
}

.care-plan-doc__cond-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__cond-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969c;
  font-size: 12px;
  font-weight: 500;
}

.care-plan-doc__cond-bar {
  position: relative;
  height: 8px;
  background: #eef2f4;
  border-radius: 999px;
  overflow: hidden;
}

.care-plan-doc__cond-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #2f8f9d, #5bbfb6);
  border-radius: 999px;
  animation: care-plan-fill-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: left center;
  overflow: hidden;
}

.care-plan-doc__cond-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: care-plan-bar-shimmer 2.4s ease-in-out infinite;
}

@keyframes care-plan-fill-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes care-plan-bar-shimmer {
  0% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(120%);
  }
}

/* Color hint: full bar uses brand teal, but item can be tinted on hover */
.care-plan-doc__cond-item:hover .care-plan-doc__cond-name {
  color: #49969c;
}

.care-plan-doc__cond-score {
  font-size: 13px;
  font-weight: 600;
  color: #49969c;
  min-width: 44px;
  text-align: right;
}

/* ----- Generic 2-column row (groups any two cards side by side) ----- */
.care-plan-doc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.care-plan-doc__row > .care-plan-doc__card {
  margin: 0;
}

/* Modifier: stretch both cards to equal (max) height */
.care-plan-doc__row--stretch {
  align-items: stretch;
}

.care-plan-doc__row--stretch > .care-plan-doc__card {
  height: 100%;
}

/* ----- Treatment Options (Surgical | Non-Surgical) ----- */
.care-plan-doc__treat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.care-plan-doc__treat-grid-devices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.care-plan-doc__treat {
  position: relative;
  border: 1px solid #e5eeed;
}

/* .care-plan-doc__treat--recommended {
  border: 1.5px solid #49969C;
} */

.care-plan-doc__treat-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #49969c;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.care-plan-doc__treat-badge i {
  color: #ffffff !important;
  font-size: 12px !important;
}

.care-plan-doc__treat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-plan-doc__treat-list li {
  position: relative;
  padding: 12px 14px;
  border: 1px dashed #e5eeed;
  border-radius: 10px;
  background: #f7faf9;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.care-plan-doc__row.dfotifgjgj {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.care-plan-doc__treat-list li strong {
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
}

.care-plan-doc__treat-list li span {
  font-size: 13px;
  color: #525252;
  font-weight: 300;
  line-height: 1.5;
}

/* ----- Procedure Details ----- */
.care-plan-doc__proc-desc {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin: 0 0 16px;
  font-weight: 300;
}

.care-plan-doc__proc-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.care-plan-doc__proc-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f7faf9;
  border: 1px solid #e5eeed;
  border-radius: 10px;
}

.care-plan-doc__proc-meta-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: #e8f7f6;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  display: flex !important;
}

.care-plan-doc__proc-meta-icon i {
  color: #49969c;
  font-size: 18px !important;
}

.care-plan-doc__proc-meta-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1f2a37;
  line-height: 1.2;
  margin-bottom: 2px;
}

.care-plan-doc__proc-meta-item span {
  display: block;
  font-size: 13px;
  color: #525252;
  font-weight: 300;
}

.care-plan-doc__proc-steps-title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 10px;
}

.care-plan-doc__proc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-plan-doc__proc-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #525252;
  line-height: 1.55;
  font-weight: 300;
}

.care-plan-doc__proc-step-no {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #49969c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ----- Recovery Milestones list (inside Recovery Timeline card) ----- */
.care-plan-doc__milestones {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-plan-doc__milestone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1f2a37;
  line-height: 1.55;
}

.care-plan-doc__milestone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f2a37;
  margin-top: 8px;
  flex-shrink: 0;
}

.care-plan-doc__milestone-text strong {
  color: #1f2a37;
  font-weight: 600;
  margin-right: 2px;
}

/* ----- Recommended Doctor card ----- */
.care-plan-doc__doc-card {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.care-plan-doc__doc-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(73, 150, 156, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.care-plan-doc__doc {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.care-plan-doc__doc-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 100%;
}

.care-plan-doc__doc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(135deg, #2f8f9d 0%, #5bbfb6 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 4px rgba(73, 150, 156, 0.15),
    0 10px 24px -10px rgba(73, 150, 156, 0.45);
}

.care-plan-doc__doc-avatar i {
  color: #ffffff;
}

.care-plan-doc .care-plan-doc__doc-avatar i {
  font-size: 44px !important;
}

.care-plan-doc__doc-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.care-plan-doc__doc-chip--success {
  background: #e6f7ee;
  border-color: #c7ecd8;
  color: #10b981;
  font-weight: 500;
}

.care-plan-doc .care-plan-doc__doc-chip--success i {
  color: #10b981;
}

.care-plan-doc__doc-info {
  min-width: 0;
}

.care-plan-doc__doc-name {
  font-size: 17px;
  font-weight: 500;
  color: #1f2a37;
  margin: 0 0 2px;
}

.care-plan-doc__doc-spec {
  font-size: 14px;
  color: #49969c;
  font-weight: 500;
  margin: 0 0 10px;
}

.care-plan-doc__doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.care-plan-doc__doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f7faf9;
  border: 1px solid #e5eeed;
  font-size: 12px;
  color: #525252;
  font-weight: 400;
}

.care-plan-doc__doc-chip i {
  color: #49969c;
  font-size: 13px !important;
}

.menu-links h6 {
  color: #49969c;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

hr {
  margin: 10px 0px;
  border-color: #999999;
}

aside.pt-sidebar.is-collapsed .menu-links h6 {
  display: none;
}

aside.pt-sidebar.is-collapsed ul.pt-sidebar__menu-links.menu-links hr {
  display: none;
}

.pt-notif-item__actions {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  width: 100px;
}

.subscription-wrapper {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in all;
  height: 100%;
  margin-top: 10px;
  border-radius: 10px;
  padding: 15px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(148, 193, 197) transparent;
  border-radius: inherit;
}

.subscription-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #ffffff;
  border: 0;
}

/* --- Headers --- */
.subscription-header-row th {
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  vertical-align: middle;
}

.plan-feature {
  width: 40%;
  background-color: #fff;
}

/* Feature Blue Highlight */
.feature-badge {
  /* background-color: #49969c; */
  color: #9ca3af;
  padding: 3px 6px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.plan-free {
  width: 20%;
  text-align: center;
  color: #9ca3af;
  background-color: #fff;
  border-left: solid 1px #e5e7eb;
}

.plan-essential {
  width: 20%;
  text-align: center;
  color: #45a796;
  background-color: #eaf5f4;
}

.plan-complete {
  width: 20%;
  text-align: center;
  color: #cda45e;
  background-color: #fcf6e8;
}

/* --- Category Label Row --- */
.category-row td {
  background-color: #eef7f8;
  color: #49969c;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  border: solid 1px #ddd;
}

/* .subscription-table thead{
  border: solid 1px #ddd;
}

.subscription-table tbody{
  border: solid 1px #e5e7eb;
} */

/* --- Data Rows --- */
.data-row {
  transition: background-color 0.2s;
}

.data-row:hover {
  background-color: #fafafa;
}

.feature-name {
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 5px 15px;
  font-size: 14px;
  color: #262f40;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

.icon-cell {
  text-align: center;
  vertical-align: middle;
  padding: 7px 15px;
  font-size: 14px;
  color: #262f40;
  border-left: 1px solid #e5e7eb;
  white-space: nowrap;
  border-top: solid 1px #e5e7eb;
}

/* --- Icon Circles --- */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 auto;
}

.icon-circle svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

/* Colors for Icons */
.icon-teal {
  background-color: #eef7f8;
  color: #49969c;
}

.icon-gold {
  background-color: #fcf6e8;
  color: #cda45e;
}

.icon-grey {
  background-color: #f3f4f6;
  color: #cbd5e1;
}

.sub-text {
  display: block;
  margin-top: 4px;
}

.pt-pricing-card.is-monthly {
  background: linear-gradient(135deg, #0d1f2d, #1e3a52);
  border: solid 2px #3a9e94;
}

.pt-pricing-card.is-monthly .pt-pricing-card__price-amount {
  color: #fff;
}

.pt-pricing-card.is-monthly .pt-pricing-card__price h1 {
  color: rgb(250 253 244 / 59%);
}

.pt-pricing-card.is-monthly .pt-pricing-card__price-period {
  color: #d9d9d9;
}

.pt-pricing-card.is-monthly .pt-pricing-card__features li {
  color: #fff;
}

.pt-pricing-card.is-monthly .pt-pricing-card__head h3 {
  color: #fff;
}

.pt-pricing-card.is-monthly .pt-pricing-card__head p {
  color: rgb(255 255 255 / 68%);
}

/* logout */

.logout-btn {
  background: #49969c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
}

.logout-btn:hover {
  background: #18585b;
}

.cancel-btn {
  background: #fff;
  color: #49969c;
  border: 1px solid #49969c;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.cancel-btn:hover {
  background: #f5fafa;
}

.basic-premium h6 {
  position: absolute;
  top: 33px;
  left: 20px;
  background: #10b981;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 36px;
}

.is-monthly .plan-update-btn {
  background: #fff;
  padding: 15px 25px;
  border-radius: 0px 0px 18px 18px;
}

.price-amount-update {
  padding: 26px;
}

.is-basic .plan-update-btn {
  background: #fff;
  padding: 15px 25px;
  border-radius: 0px 0px 18px 18px;
}

.is-basic .pt-pricing-card__cta:not(.is-current),
.pt-pricing-card.is-basic .pt-pricing-card__cta:not(.is-current) {
  background-color: #f3f4f6 !important;
  color: #6b7280 !important;
  border-color: #d1d5db !important;
}

.is-basic .pt-pricing-card__cta:not(.is-current):hover:not(:disabled),
.pt-pricing-card.is-basic
  .pt-pricing-card__cta:not(.is-current):hover:not(:disabled) {
  background-color: #e5e7eb !important;
  color: #374151 !important;
  border-color: #9ca3af !important;
  transform: scale(1.02);
}

.is-basic .pt-pricing-card__cta:not(.is-current):disabled,
.pt-pricing-card.is-basic .pt-pricing-card__cta:not(.is-current):disabled {
  background-color: #f3f4f6 !important;
  color: #9ca3af !important;
  border-color: #e5e7eb !important;
  cursor: not-allowed !important;
  opacity: 0.75;
}

.vetted-speclist {
  border-radius: 10px;
  overflow: clip;
  overflow: auto;
  border: 1px solid #e5e7eb;
}

.icon-cell:last-child {
  background: rgba(58, 158, 148, 0.03);
}

.why-rcomment-this-doctor h6 {
  color: #49969c;
  font-size: 16px;
  margin-bottom: 0px;
  padding: 22px 0px 15px 0px;
}

.ai-genreated-assesment {
  background: #e8f5f6;
  margin-top: 15px;
  padding: 10px;
  border-left: solid 3px #49969c;
}

.ai-genreated-assesment p {
  margin-bottom: 0px;
  color: #525252;
  font-size: 14px;
}

/* --- Main Card Container --- */
.care-card {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* --- Header Section --- */
.card-header {
  background-color: #e3f1ef;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.badge-free {
  display: inline-block;
  border: 1px solid rgba(73, 150, 156, 0.35);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  color: #49969c;
}

.main-title {
  font-size: 26px;
  color: #262f40;
  font-weight: 500;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 13px;
  color: #6b7280;
}

/* --- Common Section Styles --- */
.chat-msg__bubble .section {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.chat-msg__bubble .section-title {
  font-size: 14px;
  font-weight: 700;
  color: #262f40;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.chat-msg__bubble .section-title i {
  border: 1px solid rgba(73, 150, 156, 0.35);
  background: rgba(73, 150, 156, 0.08);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3b8c88;
  font-size: 14px;
}

/* --- Summary Section --- */
.summary-text {
  font-size: 14px;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 20px;
}

.tags-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e7eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #4b5563;
  font-weight: 500;
  background: #ffffff;
}

.tag i {
  color: #9ca3af;
}

/* --- Treatment Overview Options --- */
.option-card {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #ffffff;
}

.option-card:last-child {
  margin-bottom: 0;
}

/* .option-active {
  border-color: #3b8c88;
  background-color: #f6fbfb;
} */

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 18px;
}

.icon-active {
  background-color: #3b8c88;
  color: #ffffff;
}

.icon-inactive {
  background-color: #f3f4f6;
  color: #9ca3af;
}

.option-details {
  flex-grow: 1;
}

.option-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.option-desc {
  font-size: 14px;
  color: #525252;
}

.badge-next {
  background-color: #3b8c88;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
}

/* --- Questions Section --- */
.question-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.question-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.question-item:last-child {
  margin-bottom: 0;
}

.q-number {
  background-color: #eaf6f5;
  color: #3b8c88;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.q-text {
  font-size: 14px;
  color: #525252;
  padding-top: 2px;
}

/* --- Blurred Locked Sections --- */
.blur-content-wrapper {
  filter: blur(5px);
  opacity: 0.4;
  user-select: none;
  pointer-events: none;
}

.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.list-item:last-child {
  margin-bottom: 0;
}

.item-icon {
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: #6b7280;
  font-size: 18px;
  flex-shrink: 0;
}

.item-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  margin-right: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  flex-grow: 1;
}

.item-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.item-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.item-match {
  font-size: 13px;
  font-weight: 600;
  color: #45a796;
  background-color: #eaf5f4;
  padding: 4px 10px;
  border-radius: 12px;
}

.unlock-overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: 10;
}

.btn-unlock {
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-unlock:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-unlock i {
  color: #fbbf24;
  font-size: 14px;
}

/* --- Footer --- */
.chat-msg__bubble .card-footer {
  background-color: #f9fafb;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-msg__bubble .footer-info {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
  width: 70%;
}

.btn-upgrade {
  background: #49969c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s;
}

.btn-upgrade:hover {
  background: #3f8389;
  border-color: #3f8389;
  color: #ffffff;
  transform: scale(1.05);
}

.subscrption-new {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.subscrption-new h2 {
  font-size: 30px;
  margin-bottom: 23px;
  text-align: center;
  font-weight: 300;
}

.symtoms-pricing-table h2 {
  padding-top: 40px;
}

.sidebar.close .menu-bar ul.menu-links h6 {
  display: none;
}

.sidebar.close .menu-bar ul.menu-links hr {
  display: none;
}

.sidebar.close .ftr-dash p {
  display: none;
}

.pt-pricing-card.is-monthly .price-amount-update p {
  color: #fff;
}

.recent-activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* border: solid 1px #ddd; */
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e5eeed;
  transition: 0.3s ease-in all;
}

.recent-activity:hover {
  background: #e6f4f3;
  border-color: #bde6e2;
  box-shadow: 0 4px 12px rgba(47, 143, 157, 0.08);
}

.recent-activity-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 20px 0px 0px;
}

.pt-activity-item__body-reject {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.recent-activity-data a {
  margin-top: 0px;
  padding: 6px 14px;
  background: transparent;
  border: 1.5px solid #49969c;
  border-radius: 100px;
  color: #49969c;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.rect-activty-doctor {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.recent-activity-data a:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s;
}

.pt-activity-item__body-reject h6 {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 11px;
  /* background: red; */
  border-radius: 36px;
  background-color: #fde2e2;
  color: #dc2626;
  padding: 3px 9px;
}

.recent-active-data {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.recent-active-data .sm-section-sub {
  margin-bottom: 0px;
}

.pt-activity-item__body-accept h6 {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 11px;
  /* background: red; */
  border-radius: 36px;
  background-color: #e6f7ee;
  color: #10b981;
  padding: 3px 9px;
  display: inline;
  white-space: nowrap;
}

section.blogs-section.all-blogs-page .subscrption-new {
  background: none;
}

.renews-date-new {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.renews-date-new i {
  /* background: #000; */
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #fff;
  background: linear-gradient(120deg, #34a1b1 0%, #3fa9a2 55%, #2cc1b4 100%);
  font-size: 14px;
  border: solid 1px rgb(255 255 255 / 12%);
}

.essentails-date-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.renews-date-new h6 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 18px;
}

.essetntails-bdr {
  position: relative;
  height: 100%;
}

.essetntails-bdr:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  top: 0;
  left: 0px;
  border: solid 1px rgb(255 255 255 / 20%);
}

.renews-date-new span {
  font-size: 10px;
  background: #63c1ba;
  border-radius: 36px;
  padding: 3px 10px;
}

.plan-renews-date-month {
  display: flex;
  align-items: center;
  column-gap: 80px;
  height: 100%;
}

.sm-qa-icon i {
  font-size: 18px;
  color: #10b981;
}

.profile-dropdown button i {
  font-size: 16px;
}

.sm-qa-icon i {
  font-size: 18px;
  color: var(--pt-tone, #2f8f9d);
}

.surgical-status {
  grid-template-columns: 1fr;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
} */

/* Layout Grids */
.top-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 15px;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Card Base */
.custom-modal-overlay .card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.top-row .custom-modal-overlay .card {
  box-shadow: none;
}

.custom-modal-overlay .card:hover {
  border-color: #cbd5e1;
}

.custom-modal-overlay .card-padding {
  padding: 15px;
}

.custom-modal-overlay .section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

/* --- Profile Card (Left) --- */
.profile-banner {
  /* Updated Gradient to a premium mesh gradient look */
  background: linear-gradient(135deg, #0d7a71 0%, #209c91 50%, #4eb2ab 100%);
  height: 110px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.badge-verified {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn-heart {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.profile-info {
  text-align: center;
  margin-top: -55px;
  /* Adjusted for larger avatar overlap */
  position: relative;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  object-fit: cover;
  background-color: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.doc-name {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.doc-name i {
  color: #35a29a !important;
  font-size: 16px;
}

.doc-spec {
  color: #109e92;
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0;
}

.doc-degree {
  color: #6b7280;
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 20px 10px;
  padding: 0;
}

.stat-item {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 10px 4px;
  transition: all 0.2s ease-in-out;
}

.stat-item:last-child {
  border-right: none;
}

.stat-val {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-val i {
  color: #109e92;
  font-size: 14px;
}

.stat-val .fa-star {
  color: #f59e0b;
}

.stat-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary {
  background-color: #109e92;
  color: #ffffff;
  border: none;
  margin-bottom: 12px;
}

.btn-outline {
  background-color: transparent;
  color: #109e92;
  border: 1px solid #e5e7eb;
}

.btn-outline:hover {
  background-color: #e0f2f1;
}

/* --- About Doctor Card --- */
.about-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e0f2f1;
  border: 1px solid rgba(16, 158, 146, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #0d7a71;
  font-weight: 550;
  box-shadow: 0 1px 2px rgba(16, 158, 146, 0.03);
  transition: all 0.2s ease;
}

.pill:hover {
  background: #b2dfdb;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 158, 146, 0.08);
}

.pill i {
  color: #109e92;
}

/* Badge Status Styles for Profile Status Badge */
.badge-status.approved {
  background-color: #ecfdf5;
  color: #0d7a71;
  border: 1px solid #a7f3d0;
}

.badge-status.pending {
  background-color: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.badge-status.rejected {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.badge-status.revision {
  background-color: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

/* --- Clinic Card --- */
.clinic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.btn-small-outline {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #109e92;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.gallery.doctor-details-gallery {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
  border-color: #49969c !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

.clinic-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
}

.clinic-address i {
  color: #109e92;
  margin-top: 3px;
}

.clinic-timings {
  color: #109e92;
  font-weight: 500;
  margin-top: 4px;
  padding-left: 24px;
}

/* --- Experience Timeline --- */
.timeline {
  position: relative;
  padding-left: 24px;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 20px;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #109e92;
  border-radius: 50%;
  border: 3px solid #e0f2f1;
  z-index: 2;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.role-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.org-name {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.date-badge {
  background: #e0f2f1;
  color: #109e92;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.exp-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* --- Certificates Grid --- */
.certificates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cert-item {
  text-align: center;
}

.cert-img-box {
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 8px;
  background: #fafafa;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cert-img-box img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}

.cert-year {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Footer buttons inside cards */
.card-footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.btn-text {
  color: #109e92;
  background: transparent;
  border: 1px solid #e5e7eb;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bottom-row.certificate-card-design {
  margin-top: 20px;
}

.price-amount-update {
  height: 100%;
}

.care-plan-doc__row.one_provider_card {
  grid-template-columns: 1fr;
}

.care-plan-doc__row.two_provider_card {
  grid-template-columns: 1fr 1fr;
}

.care-plan-doc__row.three_provider_card {
  grid-template-columns: 1fr 1fr 1fr;
}

.pt-activity-item__body-accept {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

@media print {
  @page {
    size: A4;
    margin: 15mm 15mm 15mm 15mm;
  }

  html,
  body {
    height: auto !important;
    overflow: visible !important;
    background: #ffffff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide navigation chrome, sidebars, headers, and footer buttons */
  .pt-shell__sidebar,
  .pt-topbar,
  .care-plan-doc__actions {
    display: none !important;
  }

  /* Reset layout shells to flow naturally and avoid height limits / truncation */
  .pt-shell {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #ffffff !important;
  }

  .pt-shell__main {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #ffffff !important;
  }

  .pt-shell__content {
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
  }

  .care-plan-doc-page {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px !important;
    gap: 20px !important;
  }

  .care-plan-doc {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 20px !important;
  }

  .care-plan-doc__card {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  /* Hide decorative illustrations and absolute graphics to avoid overlap issues */
  .care-plan-doc__hero-shape,
  .care-plan-doc__hero-spark,
  .care-plan-doc__card-illo,
  .care-plan-doc__card-illo-sub,
  .care-plan-doc__chat-ic,
  .care-plan-doc__chat-sparkle,
  .care-plan-doc__chat-dot {
    display: none !important;
  }

  /* Let card body expand to 100% width since illustrations are hidden */
  .care-plan-doc__card-body {
    max-width: 100% !important;
  }

  /* Clean up page-break behavior */
  .care-plan-doc__hero,
  .care-plan-doc__patient,
  .care-plan-doc__card,
  .care-plan-doc__doc-card,
  .care-plan-doc__treat {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    margin-top: 8px !important;
  }

  /* Rows stack cleanly as vertical blocks in print */
  .care-plan-doc__row,
  .care-plan-doc__row--stretch,
  .doct-care-plan-rec,
  .one_provider_card,
  .two_provider_card,
  .three_provider_card {
    display: block !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .care-plan-doc__row > .care-plan-doc__card,
  .care-plan-doc__row--stretch > .care-plan-doc__card,
  .doct-care-plan-rec > .care-plan-doc__card,
  .one_provider_card > .care-plan-doc__card,
  .two_provider_card > .care-plan-doc__card,
  .three_provider_card > .care-plan-doc__card {
    width: 100% !important;
    margin-bottom: 20px !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }

  .care-plan-doc__treat-grid {
    display: block !important;
  }

  .care-plan-doc__treat-grid > .care-plan-doc__card {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .care-plan-doc__disclaimer {
    margin-top: 20px !important;
    page-break-before: avoid !important;
  }

  * {
    overflow: visible !important;
    box-sizing: border-box !important;
  }
}

/* ---------- Collapsed Sidebar Logo Icon Overrides (Global/Mobile First) ---------- */
/* Hide logo icon and show full logo by default (applies to mobile) */
.pt-sidebar__image .logo-icon,
.sidebar .image .logo-icon {
  display: none;
}

.pt-sidebar__image .logo-full,
.sidebar .image .logo-full {
  display: block;
}

button.edit-btn.sm-tooltip.sm-tooltip-bottom.view-pdf-certificate {
  right: 77px;
}

.care-plan-list__view-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pt-pricing-card__cta:disabled {
  cursor: no-drop !important;
}

.care-plan-subscrption-tag {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 10px;
}

.care-plan-subscrption-tag .procedureNameWrapper {
  width: 50%;
}

.anitima-sperate::after {
  content: "";
  position: absolute;
  top: 37px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 71%;
  background: #d9d9d9;
  border-radius: 10px;
}

.care-plan-subscrption-tag .action-divider {
  display: inline-block;
  width: 2px;
  margin: 0 6px;
  vertical-align: middle;
  background: linear-gradient(
    to bottom,
    rgba(73, 150, 156, 0) 0%,
    rgba(73, 150, 156, 0.28) 50%,
    rgba(73, 150, 156, 0) 100%
  );
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 20px;
}

.care-plan-subscrption-tag .care-plan-doc__proc-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  /* flex-direction: column; */
  justify-content: space-between;
  min-height: 80px;
}

/* .care-plan-subscrption-tag .care-plan-doc__proc-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  flex-direction: column;
  grid-auto-columns: 1fr;
} */

.care-plan-subscrption-tag .care-plan-doc__proc-meta-item {
  padding: 8px;
  border-radius: 10px;
  background: #f7faf9;
  border: 1px solid #e5eeed;
  font-size: 12px;
  color: #525252;
  gap: 5px;
  width: 100%;
  align-items: start;
}

.care-plan-subscrption-tag .care-plan-doc__proc-meta-icon {
  background: none;
  display: flex;
  height: 23px;
}

.procedureNameWrapper p {
  font-size: 14px;
  color: #525252;
  margin-bottom: 0px;
}

.care-plan-subscrption-tag .care-plan-doc__card-title--green,
.care-plan-doc__card-title--blue {
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  margin: 6px 0 6px;
}

.care-plan-subscrption-tag .care-plan-doc__card-icon--green,
.care-plan-doc__card-icon--blue {
  background: #dceaf7;
  color: #2563eb;
}

.care-plan-subscrption-tag .care-plan-doc__card-icon--green i,
.care-plan-doc__card-icon--blue i {
  color: #2563eb;
}

.care-plan-subscrption-tag .care-plan-doc__proc-meta-icon i {
  color: #49969c;
  font-size: 20px !important;
}

.care-plan-doc__treat-list-new {
  padding: 12px 14px;
  border: 1px dashed #e5eeed;
  border-radius: 10px;
  background: #f7faf9;
  margin-bottom: 17px;
  min-height: 115px;
}

.care-plan-doc__row.care-plan-doc__row--stretch.diagnsotic-system-pla {
  grid-template-columns: 1fr;
}

.care-plan-doc__proc-meta-item.duration-item-loose {
  background: none;
  border: none;
  width: auto;
  margin-bottom: 8px;
  gap: 0px;
  display: flex;
  align-items: center;
}

.duration-summary-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.duration-decoration {
  display: flex;
  align-items: center;
}

.duration-item-loose .duration-decoration strong {
  color: #49969c;
  margin-bottom: 0px;
}

/* ============================================================
   CARE PLAN SUMMARY CARD
   ============================================================ */
.care-plan-doc__summary-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eef0;
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}

.care-plan-doc__card-icon--blue-theme {
  background: #cfe7e8;
  color: #49969c;
}

.care-plan-doc__card-icon--blue-theme i {
  color: #2f8f9d !important;
}

.care-plan-doc__card-title--blue-theme {
  color: #49969c;
}

.care-plan-doc__summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-plan-doc__summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #262f40;
}

.care-plan-doc__summary-list li i.ri-checkbox-circle-fill {
  color: #49969c;
  font-size: 18px !important;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.care-plan-doc__summary-list li strong {
  font-weight: 600;
  color: #1f2a37;
  display: inline-block;
  margin-right: 4px;
}

.care-plan-doc__summary-list li span {
  color: #525252;
  font-weight: 300;
}

/* ============================================================
   POSSIBLE CONDITIONS ACCORDION & DETAILS
   ============================================================ */
.care-plan-doc__cond-header {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr 60px 30px;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.care-plan-doc__cond-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #49969c;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.care-plan-doc__cond-details-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.care-plan-doc__cond-details-wrapper--open {
  grid-template-rows: 1fr;
}

.care-plan-doc__cond-details-content {
  min-height: 0;
  overflow: hidden;
}

.care-plan-doc__cond-details {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding-top: 18px;
  margin-top: 14px;
  border-top: 1px dashed #e5eeed;
  width: 100%;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
}

.care-plan-doc__cond-details-wrapper--open .care-plan-doc__cond-details {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.care-plan-doc__cond-divider {
  width: 1px;
  background: #e5eeed;
  height: 100%;
  align-self: stretch;
}

.care-plan-doc__cond-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.care-plan-doc__cond-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #49969c;
  margin: 0;
}

.care-plan-doc__cond-col-title i {
  font-size: 18px !important;
  color: #49969c;
}

.care-plan-doc__cond-col-text {
  font-size: 14px;
  line-height: 1.55;
  color: #525252;
  font-weight: 300;
  margin: 0;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RECOMMENDED CONDITION CARD
   ============================================================ */
.care-plan-doc__recommendation-card {
  margin-bottom: 8px;
}

.care-plan-doc__rec-container {
  display: grid;
  grid-template-columns: 260px auto 1fr;
  align-items: center;
  background: #f5faf9;
  border: 1px solid #cfe7e8;
  border-radius: 12px;
  padding: 24px;
  gap: 16px;
}

.care-plan-doc__rec-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.care-plan-doc__rec-badge-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e8f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 6px -1px rgba(234, 179, 8, 0.15); */
}

.care-plan-doc__rec-badge-icon {
  color: #eab308;
  font-size: 44px;
  line-height: 1;
}

.care-plan-doc__rec-disease-name {
  font-size: 18px;
  font-weight: 600;
  color: #1f2a37;
  margin: 14px 0 10px;
}

.care-plan-doc__rec-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #49969c;
  color: #49969c;
  background: #e8f7f6;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.care-plan-doc__rec-divider {
  width: 1px;
  background-image: linear-gradient(
    to bottom,
    #cfe7e8 40%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: right;
  background-size: 1px 8px;
  background-repeat: repeat-y;
  height: 100%;
  align-self: stretch;
}

.care-plan-doc__rec-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
}

.care-plan-doc__rec-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.care-plan-doc__rec-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #49969c;
  margin: 0;
}

.care-plan-doc__rec-section-text {
  font-size: 14px;
  line-height: 1.6;
  color: #525252;
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   TREATMENTS ACCORDION LIST
   ============================================================ */
.care-plan-doc__treat-accordion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.care-plan-doc__treat-accordion-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #eef2f4;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.25s ease;
}

.care-plan-doc__treat-accordion-item:hover {
  background: #fdfefe;
  border-color: #cfe7e8;
}

.care-plan-doc__treat-accordion-item--open {
  border-color: #cfe7e8;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(73, 150, 156, 0.04);
}

.care-plan-doc__treat-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.care-plan-doc__treat-accordion-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2a37;
}

.care-plan-doc__treat-accordion-header i {
  font-size: 18px;
  color: #49969c;
  transition: transform 0.2s ease;
}

.care-plan-doc__treat-accordion-details-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.care-plan-doc__treat-accordion-item--open
  .care-plan-doc__treat-accordion-details-wrapper {
  grid-template-rows: 1fr;
}

.care-plan-doc__treat-accordion-details-content {
  min-height: 0;
  overflow: hidden;
}

.care-plan-doc__treat-accordion-details {
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px dashed #e5eeed;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
}

.care-plan-doc__treat-accordion-item--open
  .care-plan-doc__treat-accordion-details {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.care-plan-doc__treat-accordion-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #49969c;
  margin: 0;
}

.care-plan-doc__treat-accordion-section-text {
  font-size: 14px;
  line-height: 1.5;
  color: #525252;
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   DIAGNOSTIC TESTING & DEVICES & SUPPORTS
   ============================================================ */
.care-plan-doc__diagnostics-subtitle {
  font-size: 14px;
  color: #525252;
  font-weight: 300;
  margin: 0 0 16px;
  line-height: 1.5;
}

/* --- Care Card Diagnostics & Providers --- */
.care-card__diagnostics-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
  margin-top: -10px;
  line-height: 1.5;
}

.care-card__providers-section {
  background: rgba(244, 251, 251, 0.4);
}

.care-card__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.care-card__doc-card {
  position: relative;
  background: linear-gradient(135deg, #f4faf9 0%, #fafdfd 40%, #ffffff 80%);
  border: 1px solid #dbeee8;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(73, 150, 156, 0.04);
}

.care-card__doc-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(73, 150, 156, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.care-card__doc-card:hover {
  border-color: #49969c;
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.1);
  transform: translateY(-2px);
}

.care-card__doc-avatar-wrap {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #d8f3ee 0%, #b2e3de 100%);
  box-shadow:
    0 0 0 2px #ffffff,
    0 4px 12px rgba(73, 150, 156, 0.12);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.care-card__doc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  overflow: hidden;
  background: #2f8f9d;
}

.care-card__doc-avatar--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.care-card__doc-avatar--green {
  background: linear-gradient(135deg, #10b981, #047857);
}

.care-card__doc-avatar--purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.care-card__doc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-card__doc-body {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.care-card__doc-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f2a37;
  margin: 0 0 2px;
  line-height: 1.3;
}

.care-card__doc-spec {
  font-size: 13px;
  color: #3b8c88;
  font-weight: 500;
  margin: 0;
}

.care-card__doc-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.care-card__doc-chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5eeed;
  color: #525252;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

.care-card__doc-chip-icon {
  margin-right: 4px;
  color: #49969c;
}

.care-card__doc-chip-star {
  color: #f59e0b;
  margin-right: 4px;
}

.care-card__doc-chip--verified {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
  color: #3b8c88;
  border: 1px solid rgba(73, 150, 156, 0.2);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

.care-card__diagnostics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.care-card__diagnostics-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f5faf9;
  border: 1px solid #cfe7e8;
  border-radius: 10px;
  transition: all 0.2s ease;
  height: 100%;
}

.care-plan-doc__diagnostics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-plan-doc__diagnostics-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f5faf9;
  border: 1px solid #cfe7e8;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.care-plan-doc__diagnostics-item:hover {
  border-color: #49969c;
}

.care-plan-doc__diagnostics-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #cfe7e8;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.care-plan-doc__diagnostics-item-icon i {
  font-size: 14px !important;
  color: #49969c;
}

.care-plan-doc__diagnostics-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2a37;
}

.care-plan-doc__devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.care-plan-doc__device-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #eef2f4;
  border-radius: 10px;
  transition: all 0.2s ease;
  position: relative;
}

.care-plan-doc__device-box:hover {
  border-color: #cfe7e8;
  background: #fdfefe;
  box-shadow: 0 2px 6px rgba(73, 150, 156, 0.04);
}

.care-plan-doc__device-image-wrap {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  background: #f9fbfb;
  border: 1px solid #eef2f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.care-plan-doc__device-image {
  max-width: 100%;
  max-height: 100%;
}

.care-plan-doc__device-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.care-plan-doc__device-name {
  font-size: 14px;
  font-weight: 600;
  color: #49969c;
  margin: 0;
}

.care-plan-doc__device-desc {
  font-size: 14px;
  line-height: 1.45;
  color: #525252;
  font-weight: 300;
  margin: 0;
  flex-grow: 1;
}

/* ----- Recommended Providers Single Card Layout ----- */
.care-plan-doc__doc-card-single {
  background: #f7faf9;
  border: 1px solid #cfe7e8;
  position: relative;
  overflow: hidden;
  height: auto;
}

.care-plan-doc__doc-card-single::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(73, 150, 156, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.care-plan-doc__doc-card-single .care-plan-doc__card {
  background: #ffffff;
  border: 1px solid #eef2f4;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.25s ease;
  height: 100%;
}

.care-plan-doc__doc-card-single .care-plan-doc__card:hover {
  border-color: #cfe7e8;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(73, 150, 156, 0.04);
}

.care-plan-doc__doc-card-single .why-rcomment-this-doctor {
  flex-grow: 1;
}

.care-plan-doc__list li span strong {
  font-weight: 600;
  color: #1f2a37;
  display: inline-block;
  margin-right: 4px;
}

.care-plan-doc__diagnostics-item p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #525252;
  font-weight: 300;
}

@media print {
  .care-plan-doc__doc-card-single {
    background: #ffffff !important;
    border: none !important;
    padding: 0 !important;
  }

  .one_provider_card > .care-plan-doc__card,
  .two_provider_card > .care-plan-doc__card,
  .three_provider_card > .care-plan-doc__card {
    width: 100% !important;
    margin-bottom: 20px !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    border: 1px solid #cfe7e8 !important;
    background: #ffffff !important;
  }

  .care-plan-doc__doc-avatar-wrap,
  .care-plan-doc__doc-avatar {
    overflow: hidden !important;
    border-radius: 50% !important;
  }

  .care-plan-doc__doc-avatar img {
    border-radius: 50% !important;
    object-fit: cover !important;
  }
}

/* Custom styles for premium device recommendation cards */
.care-plan-doc__device-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px 0;
}

.care-plan-doc__device-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 99px;
  line-height: 1.2;
}

.care-plan-doc__device-pill.recommended {
  background-color: #49969c;
  color: #ffffff;
  border: 1px solid #49969c;
}

.care-plan-doc__device-pill.recommended i {
  color: #ffffff;
}

.care-plan-doc__device-pill.manufacturer {
  background-color: #e8f7f6;
  color: #49969c;
  border: 1px solid #bde6e2;
}

.care-plan-doc__device-pill.model {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.care-plan-doc__device-pill.certification {
  background-color: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.care-plan-doc__device-benefits {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eef2f4;
}

.care-plan-doc__device-benefits-title {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.care-plan-doc__device-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.care-plan-doc__device-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
}

.care-plan-doc__device-benefit-item i {
  color: #49969c;
  font-size: 14px;
  margin-top: 1px;
}

/* Meta layout utilities (replacing inline styles) */
.care-plan-doc__device-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 6px 0 8px 0;
}

.care-plan-doc__device-meta-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Floating corner Recommended Badge */
.care-plan-doc__device-recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #49969c;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(47, 143, 157, 0.25);
  line-height: 1.2;
  z-index: 10;
}

.care-plan-doc__device-recommended-badge i {
  color: #ffffff;
  font-size: 11px;
}

/* Doctor portal device card classes (replacing inline styles) */
.doctor-device-card__desc {
  font-size: 13px;
  color: #525252;
  margin: 6px 0 8px;
}

.doctor-device-card__benefits-divider {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #eef2f4;
}

.doctor-device-card__benefits-title {
  font-size: 11px;
}

.doctor-device-card__benefit-item {
  font-size: 11px;
}

.doctor-device-card__procedures {
  margin-top: 8px;
}

/* Styling for nested treatment options grid inside parent card */
.care-plan-doc__treatment-options-card .care-plan-doc__treat-grid {
  margin-top: 20px;
  margin-bottom: 0;
}

/* AI Device Comparison Table Styles */
/* .care-plan-doc__comparison-card {
  margin-top: 24px;
} */

.care-plan-doc__comparison-subtitle {
  font-size: 14px;
  color: #525252;
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.5;
}

.care-plan-doc__comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Scrollbar customizations */
.care-plan-doc__comparison-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.care-plan-doc__comparison-table-wrap::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.care-plan-doc__comparison-table-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.care-plan-doc__comparison-table-wrap::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.care-plan-doc__comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-family: inherit;
}

.care-plan-doc__comparison-table th,
.care-plan-doc__comparison-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  font-size: 14px;
  vertical-align: middle;
}

.care-plan-doc__comparison-table th:last-child,
.care-plan-doc__comparison-table td:last-child {
  border-right: none;
}

.care-plan-doc__comparison-table tr:last-child td {
  border-bottom: none;
}

/* Header Columns */
.care-plan-doc__comparison-table th {
  background-color: #f8fafc;
  color: #1f2937;
  font-weight: 600;
}

.care-plan-doc__comparison-table th .table-header-overview {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #49969c;
  font-size: 14px;
  font-weight: 600;
}

.care-plan-doc__comparison-table th .table-header-overview i {
  font-size: 18px;
}

.care-plan-doc__comparison-table th.recommended-col {
  background-color: #f0fdfa;
  /* Extremely soft green tint for AI Recommended */
  position: relative;
}

.care-plan-doc__comparison-table td.recommended-col {
  background-color: #fafdfd;
}

.care-plan-doc__comparison-table .recommended-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #49969c;
  color: #ffffff;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.care-plan-doc__comparison-table .device-title {
  font-size: 14px;
  font-weight: 600;
  color: #49969c;
  line-height: 1.3;
  margin-bottom: 2px;
}

.care-plan-doc__comparison-table .device-manufacturer {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
}

.care-plan-doc__comparison-table .device-pill {
  display: inline-block;
  background-color: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 99px;
  border: 1px solid #e2e8f0;
}

.care-plan-doc__comparison-table th.recommended-col .device-pill {
  background-color: #e8f7f6;
  color: #49969c;
  border-color: #bde6e2;
}

/* Feature Labels column */
.care-plan-doc__comparison-table td.feature-label-cell {
  background-color: #f8fafc;
  color: #525252;
  font-weight: 600;
  width: 220px;
  min-width: 200px;
}

.care-plan-doc__comparison-table .feature-label-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.care-plan-doc__comparison-table .feature-label-content i {
  color: #49969c;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Star rating custom colors */
.care-plan-doc__comparison-table .star-rating i {
  font-size: 15px;
}

.care-plan-doc__comparison-table .status-yes,
.care-plan-doc__comparison-table .status-excellent {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.care-plan-doc__comparison-table .status-yes i,
.care-plan-doc__comparison-table .status-excellent i {
  font-size: 16px;
}

.care-plan-doc__comparison-table tr:hover td {
  background-color: #f8fafc;
  transition: background-color 0.2s ease;
}

.care-plan-doc__comparison-table tr:hover td.recommended-col {
  background-color: #f3fbfb;
}

.care-plan-doc__treat-grids.care-plan-doc__diagnostics-devices {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.care-plan-doc__treat-grid-device.care-plan-doc__diagnostics-devices {
  gap: 18px;
  display: flex;
  flex-direction: column;
}

/* ---------- Care Plan Limit Progress & Value ---------- */
.pt-limit-card-mini__progress-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.pt-limit-card-mini__progress-bar {
  height: 8px;
  background: #e8f5f6;
  /* Very light teal-grey track matching the image */
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
}

.pt-limit-card-mini__progress-fill {
  height: 100%;
  background: #49969c;
  /* Teal filled progress matching the theme */
  border-radius: 99px;
  transition: width 0.4s ease;
}

.pt-limit-card-mini__highlight {
  color: #49969c;
  font-weight: 600;
}

.pt-limit-card-mini__num-active {
  color: #49969c;
  font-weight: 700;
}

.pt-limit-card-mini__num-slash,
.pt-limit-card-mini__num-total {
  color: #262f40;
  font-weight: 300;
}

.pt-summary-card__topLast {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}

/* ---------- Premium Current Plan Row (Subscription Page) ---------- */
.pt-current-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(120deg, #2f8f9d 0%, #3fa9a2 55%, #5bbfb6 100%);
  border-radius: 14px;
  padding: 24px 30px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(14, 74, 90, 0.15);
  flex-wrap: wrap;
  width: 100%;
}

.pt-current-plan-col {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
}

.pt-current-plan-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.pt-current-plan-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.pt-current-plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pt-current-plan-label-light {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.pt-current-plan-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt-current-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.pt-current-plan-status-badge {
  background: #e6f7ee;
  color: #10b981;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pt-current-plan-status-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
}

.pt-current-plan-status-badge--active {
  background: #e6f7ee;
  color: #10b981;
}

.pt-current-plan-status-badge--active .pt-current-plan-status-dot {
  background-color: #10b981;
}

.pt-current-plan-status-badge--limit-over {
  background: #fee2e2;
  color: #ef4444;
}

.pt-current-plan-status-badge--limit-over .pt-current-plan-status-dot {
  background-color: #ef4444;
}

.pt-current-plan-date {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.pt-current-plan-days-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  margin-top: 2px;
}

.pt-current-plan-days-badge i {
  font-size: 12px;
}

.pt-current-plan-limit-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.pt-current-plan-progress-wrap {
  width: 100%;
  max-width: 160px;
  margin-top: 4px;
}

.pt-current-plan-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
}

.pt-current-plan-progress-fill {
  height: 100%;
  /* background: #19df9d; */
  border-radius: 99px;
  transition: width 0.4s ease;
  background: linear-gradient(135deg, #6ef7ca 0%, #19df9d 60%, #59dab0 100%);
}

.pt-current-plan-actions-col {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 180px;
}

.pt-current-plan-history-btn {
  background: #ffffff;
  color: #49969c;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out all;
}

.pt-current-plan-history-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pt-current-plan-history-btn:hover {
  background: #49969c;
  color: #fff;
  transform: scale(1.05);
}

.pt-current-plan-history-btn i {
  font-size: 16px;
}

/* ==========================================================================
   AI Recommendation Section Styles
   ========================================================================== */
.ai-rec-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f0fdfa;
  color: #49969c;
  border: 1px solid #bde6e2;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 99px;
  margin-left: auto;
}

.ai-rec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.ai-rec-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease-in-out;
  position: relative;
}

.ai-rec-col:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.ai-rec-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-right: 28px;
}

.ai-rec-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

.ai-rec-icon-circle.accent-teal {
  background-color: #49969c;
}

.ai-rec-icon-circle.accent-purple {
  background-color: #7c3aed;
}

.ai-rec-icon-circle.accent-blue {
  background-color: #2563eb;
}

.ai-rec-col-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-rec-col-header-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #525252;
  margin: 0;
}

.ai-rec-col-header-info p {
  font-size: 11px;
  color: #525252;
  margin: 0;
  line-height: 1.3;
}

.ai-rec-col-header-arrow {
  display: none;
}

.ai-rec-col-header-arrow:hover {
  background-color: #f8fafc;
  color: #49969c;
  border-color: #cbd5e1;
}

.ai-rec-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Custom Scrollbar for AI Recommendation Tables */
.ai-rec-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.ai-rec-table-wrap::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.ai-rec-table-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.ai-rec-table-wrap::-webkit-scrollbar-thumb:hover {
  background: #49969c;
}

.ai-rec-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  text-align: left;
  background-color: #ffffff;
}

.ai-rec-table th {
  font-weight: 600;
  background-color: #ffffff;
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 13.5px;
  color: #64748b;
  letter-spacing: 0.2px;
}

.ai-rec-table th:first-child {
  border-top-left-radius: 11px;
}

.ai-rec-table th:last-child {
  border-top-right-radius: 11px;
  border-right: none;
}

.ai-rec-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  color: #475569;
  vertical-align: middle;
  line-height: 1.5;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
  font-size: 12px;
}

.ai-rec-table td:last-child {
  border-right: none;
}

.ai-rec-table tr:last-child td {
  border-bottom: none;
}

.ai-rec-table tr:last-child td:first-child {
  border-bottom-left-radius: 11px;
}

.ai-rec-table tr:last-child td:last-child {
  border-bottom-right-radius: 11px;
}

/* Alignments */
/* Alignments & Column backgrounds */
.ai-rec-table th:first-child {
  text-align: left;
  font-weight: 500;
  color: #475569;
  width: 180px;
  min-width: 150px;
  background-color: #ffffff;
}

.ai-rec-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #475569;
  width: 180px;
  min-width: 150px;
}

/* Swap background colors: Apply theme colors to the first column labels */
.ai-rec-col.accent-teal .ai-rec-table td:first-child {
  background-color: #f0fdfa !important;
}

.ai-rec-col.accent-purple .ai-rec-table td:first-child {
  background-color: #f5f3ff !important;
}

.ai-rec-col.accent-blue .ai-rec-table td:first-child {
  background-color: #eff6ff !important;
}

.ai-rec-table th:not(:first-child),
.ai-rec-table td:not(:first-child) {
  text-align: start;
}

/* Highlight recommended column (Second column) with grey background */
.ai-recommended-col-cell {
  /* background-color: #f1f5f9 !important; */
  font-weight: 600;
}

.ai-recommended-col-header {
  /* background-color: #f1f5f9 !important; */
  font-weight: 700 !important;
}

.ai-rec-col.accent-teal .ai-recommended-col-cell,
.ai-rec-col.accent-teal .ai-recommended-col-header {
  color: #49969c !important;
}

.ai-rec-col.accent-purple .ai-recommended-col-cell,
.ai-rec-col.accent-purple .ai-recommended-col-header {
  color: #6d28d9 !important;
}

.ai-rec-col.accent-blue .ai-recommended-col-cell,
.ai-rec-col.accent-blue .ai-recommended-col-header {
  color: #1d4ed8 !important;
}

/* Row hover effects */
.ai-rec-table tbody tr:hover td {
  background-color: #f8fafc;
}

.ai-rec-table tbody tr:hover td.ai-recommended-col-cell {
  background-color: #e2e8f0 !important;
}

.ai-rec-col.accent-teal .ai-rec-table tbody tr:hover td:first-child {
  background-color: #e6fbf7 !important;
}

.ai-rec-col.accent-purple .ai-rec-table tbody tr:hover td:first-child {
  background-color: #ede9fe !important;
}

.ai-rec-col.accent-blue .ai-rec-table tbody tr:hover td:first-child {
  background-color: #e0f2fe !important;
}

.ai-rec-table-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-rec-number-badge {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.ai-rec-number-badge.accent-teal,
.ai-rec-number-badge.accent-purple,
.ai-rec-number-badge.accent-blue {
  background-color: #e8f5f6;
  color: #49969c;
}

.ai-rec-col.accent-teal .ai-rec-item-name-text,
.ai-rec-col.accent-purple .ai-rec-item-name-text,
.ai-rec-col.accent-blue .ai-rec-item-name-text {
  color: #1f2a37;
}

.ai-rec-item-name-text {
  font-weight: 600;
}

.ai-rec-summary-box {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-rec-summary-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 2px;
}

.ai-rec-summary-title i {
  font-size: 14px;
}

.ai-rec-summary-title i.accent-teal,
.ai-rec-summary-title i.accent-purple,
.ai-rec-summary-title i.accent-blue {
  color: #49969c;
}

.ai-rec-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ai-rec-summary-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ai-rec-summary-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: capitalize;
}

.ai-rec-col.accent-teal .ai-rec-summary-value,
.ai-rec-col.accent-purple .ai-rec-summary-value,
.ai-rec-col.accent-blue .ai-rec-summary-value {
  color: #49969c;
}

.ai-rec-summary-value {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.ai-rec-takeaway-box {
  border-radius: 10px;
  padding: 12px;
  margin-top: auto;
}

.ai-rec-takeaway-box.accent-teal,
.ai-rec-takeaway-box.accent-purple,
.ai-rec-takeaway-box.accent-blue {
  background-color: #e8f7f6;
  border-left: 3px solid #49969c;
}

.ai-rec-takeaway-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-rec-takeaway-title.accent-teal,
.ai-rec-takeaway-title.accent-purple,
.ai-rec-takeaway-title.accent-blue {
  color: #49969c;
}

.ai-rec-takeaway-text {
  font-size: 11px;
  line-height: 1.4;
  color: #525252;
}

.ai-rec-disclaimer-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  width: 100%;
  margin-top: 10px;
}

.ai-rec-disclaimer-box i {
  font-size: 18px;
  color: #49969c;
  flex-shrink: 0;
}

.f-logo p a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
}

.pt-card.pt-profile-form-card
  .pt-profile-form-card__actions
  button.pt-btn.pt-btn--ghost {
  border: solid 1px #49969c;
}

.modal-body.account-information.insurance-plan {
  height: auto;
}

.careplan-journey-view {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search-table-name {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.bd-section-body p a {
  color: #49969c;
}

@media (max-width: 991px) {
  .sidebar-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    cursor: pointer;
    animation: fadeInOverlay 0.25s ease-out;
  }
}

@media (min-width: 992px) {
  .sidebar-mobile-overlay {
    display: none;
  }
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Prostate Comparison Page Styles
   ========================================================================== */
.prostate-comp-page {
  padding: 24px;
  background-color: #f9f9f9;
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
}

.prostate-comp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #49969c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.prostate-comp-back-link:hover {
  color: #387b80;
  text-decoration: none;
}

.prostate-comp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(73, 150, 156, 0.03);
  margin-bottom: 24px;
}

.prostate-comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

/* .prostate-comp-card-wrapper {
  margin-top: 24px;
} */

.prostate-comp-card-wrapper .ai-rec-col-header-info h3 {
  color: #334155;
}

.prostate-comp-card-wrapper .ai-rec-col-header-info p {
  color: #525252;
}

.prostate-comp-card-wrapper .ai-rec-table th:first-child,
.prostate-comp-card-wrapper .ai-rec-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1.5px solid #e2e8f0;
  background-color: #f0fdfa !important;
}

/* .prostate-comp-card-wrapper .ai-rec-table tr.ai-recommended-row td {
  background-color: #f1f5f9 !important;
  color: #49969c !important;
} */

.prostate-comp-card-wrapper
  .ai-rec-table
  tr.ai-recommended-row
  td
  span:first-child {
  color: #475569 !important;
}

.prostate-comp-card-wrapper .ai-rec-table tr.ai-recommended-row:hover td {
  background-color: #e2e8f0 !important;
}

.prostate-comp-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.prostate-comp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e8f5f6;
  color: #49969c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.prostate-comp-title-area h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.prostate-comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f0fdfa;
  color: #49969c;
  border: 1px solid #bde6e2;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 99px;
  margin-left: auto;
}

.prostate-comp-subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Table styles */
.prostate-comp-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Scrollbar customization */
.prostate-comp-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.prostate-comp-table-wrap::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.prostate-comp-table-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.prostate-comp-table-wrap::-webkit-scrollbar-thumb:hover {
  background: #49969c;
}

.prostate-comp-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  text-align: left;
}

.prostate-comp-table th {
  background-color: #ffffff;
  font-weight: 700;
  color: #475569;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}

.prostate-comp-table th:first-child {
  border-top-left-radius: 11px;
  width: 180px;
  background-color: #ffffff;
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1.5px solid #e2e8f0;
}

.prostate-comp-table th:last-child {
  border-top-right-radius: 11px;
  border-right: none;
}

.prostate-comp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  color: #525252;
  vertical-align: top;
  line-height: 1.5;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.prostate-comp-table td:first-child {
  font-weight: 600;
  color: #475569;
  background-color: #f8fafc;
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 1.5px solid #e2e8f0;
  width: 180px;
}

.prostate-comp-table td:last-child {
  border-right: none;
}

.prostate-comp-table tr:last-child td {
  border-bottom: none;
}

.prostate-comp-table tr:last-child td:first-child {
  border-bottom-left-radius: 11px;
}

.prostate-comp-table tr:last-child td:last-child {
  border-bottom-right-radius: 11px;
}

.prostate-comp-table tbody tr:hover td {
  background-color: #f8fafc;
}

.prostate-comp-table tbody tr:hover td:first-child {
  background-color: #f1f5f9;
}

.prostate-comp-table th.featured-col {
  color: #49969c !important;
  font-weight: 800 !important;
}

.prostate-comp-table td.featured-cell {
  color: #49969c !important;
  font-weight: 600 !important;
}

/* Cards Grid Styles */
.prostate-comp-grid-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prostate-comp-grid-title i {
  color: #49969c;
}

.prostate-comp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.prostate-comp-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.prostate-comp-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(73, 150, 156, 0.08);
  border-color: #bde6e2;
}

.prostate-comp-item-card.featured {
  border: 1.5px solid #49969c;
  background-color: #f0fdfa;
}

.prostate-comp-item-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  background-color: #49969c;
  color: #ffffff;
  font-size: 9px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prostate-comp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.prostate-comp-card-name {
  font-weight: 700;
  font-size: 13.5px;
  color: #1e293b;
}

.prostate-comp-card-tag {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: capitalize;
}

.prostate-comp-card-tag.surgical {
  background-color: #fee2e2;
  color: #991b1b;
}

.prostate-comp-card-tag.laser {
  background-color: #fef3c7;
  color: #92400e;
}

.prostate-comp-card-tag.invasive {
  background-color: #ede9fe;
  color: #5b21b6;
}

.prostate-comp-card-tag.minimally {
  background-color: #dcfce7;
  color: #166534;
}

.prostate-comp-card-tag.interventional {
  background-color: #e0f2fe;
  color: #075985;
}

.prostate-comp-card-list {
  margin: 0;
  padding-left: 16px;
  font-size: 11px;
  color: #475569;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prostate-comp-card-list li {
  line-height: 1.4;
}

/* ===== VERIFY POPUP MODAL ===== */
.modal.overlay {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.verify-popup {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalScaleIn 0.3s ease-out;
}

.verify-popup .verify-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.verify-popup .verify-icon img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.verify-popup h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.verify-popup p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.verify-popup .btn-ok {
  background-color: #49969c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.verify-popup .btn-ok:hover {
  background-color: #3b7c81;
}
