/* * {
  outline:1px solid pink;
} */


:root {
  --heading-color: #101828;
  --base-color: #101828;
  --accent: #0369a1;
  --light-base-color: #344054;
  --offwhite: #f0f0f0;
  --grey: #475467;
  --light-grey: #f3f3f3;
  --muted: #667085;
  --dark-grey: #2c2b39;
  --base-line-height: 1.4rem;
  --secondary-color: #0369a1;
  /* --page-width: 1280px; */
  --default-background-color: #fff;
  --orange-50: #fff7ed;
  /* --brand-color: #F64E35; */
  /* --brand-color: #1D537F; */
  --brand-color: #167DD1;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --skyblue-50: #f0f9ff;
  --skyblue-100: #e0f2fe;
  --skyblue-200: #bae6fd;
  --skyblue-400: #38bdf8;
  --skyblue-700: #0369a1;
  --skyblue-900: #0c4a6e;
  --red-100: #fff8f8;
  --red-200: #f3a7a7;
  --red-400: #f87171;
  --red-700: #b91c1c;
  --red-900: #7f1d1d;
  /* --primary-color: #F64E35; */
  /* --primary-color: oklch(27.9% 0.041 260.031); */
  --primary-color: #167DD1;
  --base-border-radius: 8px;
  --base-padding: 6px 8px;
  --base-border: 1px solid #e3e6eb;
  --font-20: 20px;
  --font-18: 18px;
  --font-16: 16px;
  --font-14: 14px;
  --font-13: 13px;
  --font-12: 12px;
  --font-10: 10px;
  --base-box-shadow: 0px 1px 1px 1px rgb(16 24 40 / 2%);
  --inner-box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --animate-duration: 250ms;
  --animate-delay: 0.2s;
  --font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}


body {
  color: var(--base-color);
  font-family: var(--font-family);
  background-color: var(--default-background-color);
  font-size: var(--base-font-size);
  font-weight: 400;
  /* letter-spacing: -0.01em; */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Customer view sticky footer support */
.customer-page-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  /* padding-bottom: 26px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'Manrope', 'Inter', 'Geist', sans-serif;
  font-weight: 700;
}

.playwrite {
  font-family: 'Playwrite US Modern', sans-serif;
}

h1 {
  font-size: 34px;
  line-height: 38px;
}

.admin-page-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 4px;
}

h2 {
  font-size: 26px;
  line-height: 34px;
}

h3 {
  font-size: 22px;
  line-height: 28px;

}

h4 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 4px;
}

h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

p {
  font-size: var(--base-font-size);
  line-height: 24px;
  margin-bottom: 4px;
}

.text-muted {
  color: #475467 !important;
}

.support-text {
  color: var(--grey);
}

/* Colors */
.brand-orange {
  color: #FF654E;
}

.brand-blue {
  color: #1D537F;
}



/* Main site navigation */
.sidebar-footer {
  border-top: 1px solid #ededed;
}

.site-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
  font-family: 'Manrope', 'Inter', 'Geist', sans-serif;
  color: var(--base-color);
}




a {
  text-decoration: none;
  color: var(--brand-color);
}

/* layout */

.main-content {
  padding-left: 280px;
  padding-top: 24px;
  padding-bottom: 140px;
  min-height: 100vh;
}

.container {
  max-width: 1140px;
}

.customer-container {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .main-content {
    padding-left: 0px;
  }
}

.max-450 {
  max-width: 450px;
}



/* Customer view override - no sidebar */

@media (min-width: 992px) {
  .customer-view .main-content {
    padding-left: 0px !important;
    max-width: 996px;
  }
}


@media (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}

.sticky-bottom {
  position: sticky;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: var(--base-border);
  border-bottom: none;
  bottom: 0;
  left: 0;
  padding-left: 264px;
  background-color: var(--default-background-color);
  margin-bottom: -12px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgb(255 255 255 / 28%);
  transition: background-color 0.3s ease;
}



.scroll-container {
  overflow-x: auto;
  flex-wrap: nowrap;
}

section {
  padding-top: 12px;
  margin: auto;
}


.breadcrumb-item a,
.breadcrumb-item {
  font-size: var(--font-13);
  color: var(--light-base-color);
}

.breadcrumb-item.active {
  font-weight: 500;
  background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  padding: 0px 6px 0px 2px;
}





/* Dynamic Responsive Table Styles */
.dynamic-table-container {
  background: white;
  border-radius: var(--base-border-radius);
  box-shadow: var(--base-box-shadow);
  overflow: hidden;
  border: var(--base-border);
}

.dynamic-table-header {
  padding: 20px;
  border-bottom: var(--base-border);
}

.dynamic-table-header h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

/* Desktop Table Styles */
.dynamic-table-scroll {
  overflow-x: auto;
}

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

.dynamic-th {
  background-color: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  color: var(--grey);
  font-size: var(--font-14);
  border-bottom: var(--base-border);
  white-space: nowrap;
}

.dynamic-td {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  font-size: var(--font-14);
  color: var(--base-color);
}

.dynamic-table tr:hover {
  background-color: #f8fafc;
}

.dynamic-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dynamic-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--base-border);
  background-color: #f8f9fa;
  font-weight: 600;
  font-size: 14px;
  color: #495057;
}

.dynamic-user-details h3 {
  font-size: var(--font-14);
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 0 2px 0;
}

.dynamic-email {
  font-size: var(--font-13);
  color: var(--grey);
  margin: 0;
}

.dynamic-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-13);
  font-weight: 500;
}

.dynamic-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
}

.dynamic-membership {
  font-size: var(--font-14);
  color: var(--base-color);
}

.dynamic-actions {
  display: flex;
  gap: 8px;
}

.dynamic-action-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  color: var(--grey);
}

.dynamic-action-btn:hover {
  background-color: #f1f5f9;
  color: var(--base-color);
}

/* Mobile Card Styles */
.dynamic-card-container {
  display: none;
  padding: 20px;
  gap: 16px;
  flex-direction: column;
}

.dynamic-member-card {
  background: white;
  border: var(--base-border);
  border-radius: var(--base-border-radius);
  padding: 20px;
  transition: box-shadow 0.2s;
}

.dynamic-member-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dynamic-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dynamic-card-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dynamic-card-details {
  display: grid;
  gap: 12px;
}

.dynamic-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.dynamic-detail-row:last-child {
  border-bottom: none;
}

.dynamic-detail-label {
  font-size: var(--font-13);
  color: var(--grey);
  font-weight: 500;
  min-width: 80px;
}

.dynamic-detail-value {
  flex: 1;
  text-align: right;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .dynamic-table-scroll {
    display: none;
  }

  .dynamic-card-container {
    display: flex;
  }

  .dynamic-table-header {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .dynamic-table-header h1 {
    font-size: 20px;
  }

  .dynamic-member-card {
    padding: 16px;
  }

  .dynamic-card-header {
    flex-direction: column;
    gap: 12px;
  }

  .dynamic-actions {
    align-self: flex-end;
  }
}

/* Colours */

.grey-bg {
  background-color: #F3F3F3;
}

.grey {
  color: #F3F3F3;
}

.base-color {
  color: var(--base-color);
}

.brand-color {
  color: var(--brand-color);
}

.border-none {
  border: none;
}


/* Tables */
table {
  width: 100%;
  border: var(--base-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--base-border-radius);
  overflow: hidden;
}

thead {
  background-color: #fafafa;
}

th {
  font-weight: 500;
  font-size: 12px;
  color: #475467;
  padding: 12px 18px;
  border-bottom: 1px solid #EFEBEB;
  white-space: nowrap;
}

tr {
  border-bottom: 1px solid #EFEBEB;
}

td {
  padding: 12px 18px;
  font-size: 14px;
  color: #101828;
  white-space: nowrap;
  border-bottom: 1px solid #EFEBEB;
}

/* Remove bottom border from last row */
tr:last-child td {
  border-bottom: none;
}

/* Round top corners of first header row */
thead tr:first-child th:first-child,
tr:first-child th:first-child {
  border-top-left-radius: var(--base-border-radius);
}

thead tr:first-child th:last-child,
tr:first-child th:last-child {
  border-top-right-radius: var(--base-border-radius);
}

/* Round bottom corners of last row */
tbody tr:last-child td:first-child,
tr:last-child td:first-child {
  border-bottom-left-radius: var(--base-border-radius);
}

tbody tr:last-child td:last-child,
tr:last-child td:last-child {
  border-bottom-right-radius: var(--base-border-radius);
}




/* Buttons and links  */

button,
.btn,
.button {
  border: var(--base-border);
  color: var(--base-color);
  border-radius: var(--base-border-radius);
  padding: 8px 14px;
  font-size: var(--font-14);
  background: #fff;
  font-weight: 500;
  transition: 0.4s;
  text-wrap: nowrap;
  text-align: center;
  /* box-shadow: var(--base-box-shadow); */
}

.btn,
a,
.button {
  cursor: pointer;
}

.btn-small,
.btn-sm {
  padding: 6px 12px;
  font-size: var(--font-13);
}

.btn-round {
  border-radius: 50px;
}

.btn-unstyled {
  /* Remove all background styling */
  background: none;
  background-color: transparent;

  /* Remove borders and outline */
  border: none;
  outline: none;

  /* Remove padding and margins */
  padding: 0;
  margin: 0;

  /* Remove any text decoration */
  text-decoration: none;

  /* Reset font properties */
  font: inherit;
  color: inherit;

  /* Remove any shadow */
  box-shadow: none;

  /* Remove rounded corners */
  border-radius: 0;

  /* Ensure proper cursor */
  cursor: pointer;

  /* Remove min-width/height if any */
  min-width: 0;
  min-height: 0;

  /* Prevent text selection */
  user-select: none;

  /* Reset alignment */
  text-align: inherit;

  /* Ensure button text aligns with other text */
  vertical-align: baseline;

  /* Remove webkit appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Handle focus state for accessibility */
.btn-unstyled:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Remove default touch highlight on mobile */
.btn-unstyled {
  -webkit-tap-highlight-color: transparent;
}



.btn-primary {
  background-color: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

.btn-grey {
  background-color: #F3F3F3;
  color: var(--base-color);
  border: 1px solid #ededed;
}

.btn-dark-grey {
  background-color: var(--dark-grey);
  color: #fff;
  border: 1px solid var(--dark-grey);
}

.btn-danger {
  background-color: #D92D20;
  color: #fff;
  border: 1px solid #D92D20;
}

button:hover,
.btn:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: var(--base-border);
}

.btn-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-white {
  background-color: #fff;
  color: var(--base-color);
  border: var(--base-border);
  box-shadow: var(--base-box-shadow);
  box-shadow: none;
}

.btn-white:hover {
  background-color: #F3F3F3;
  border: 1px solid transparent;
  color: var(--base-color);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--brand-color);
  border-color: var(--brand-color);
  background-color: #fff;
}

.close-btn {
  background-color: var(--offwhite);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  font-size: 12px;
  color: var(--muted);
  align-items: center;
  justify-content: center;
  padding: 8px;
}



.no-styling {
  text-decoration: none;
  color: inherit;
}

.border-none {
  border: none;
}

.border {
  border: var(--base-border);
}

.border-top {
  border-top: 1px solid #ededed;
}

.border-bottom {
  border-bottom: 1px solid #ededed;
}

.border-radius {
  border-radius: var(--base-border-radius);
}

.nav-tabs .nav-link {
  border: var(--base-border);
  border-radius: var(--base-border-radius);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}

.nav-tabs .nav-link.active {
  background-color: var(--brand-color);
  color: white;
  border-color: var(--brand-color);
}

.nav-tabs .nav-link:hover {
  background-color: var(--brand-color);
  color: white;
}

.nav-tabs>.nav-item:hover {
  background-color: white;
}

/* Badges */
.badge {
  background-color: var(--skyblue-50);
  color: var(--skyblue-900);
  border-radius: 12px;
  padding: 4px 8px;
  font-size: var(--font-12);
  font-weight: 600;
}

.badge-grey {
  background-color: #F3F3F3;
  color: var(--base-color);
  border: 1px solid #F3F3F3;
  font-weight: 400;
}

.badge.green,
.badge.success,
.bg-success {
  background-color: #ECFDF3 !important;
  color: #067647 !important;
  border: 1px solid #ABEFC6 !important;
}

.badge.red,
.badge.danger,
.bg-danger {
  background-color: #FEF3F2 !important;
  color: #B42318;
  border: 1px solid #FEE2E0;
}

.bg-info {
  background-color: #F3F3F3 !important;
  color: var(--base-color) !important;
}



@media (max-width:900px) {
  .w-sm-100 {
    width: 100%;
  }
}

/* Forms and inputs */

.form-row {
  border-bottom: 1px solid #ededed;
  padding: 36px 0px 36px 0px;
}


@media (max-width:992px) {
  .form-row {
    padding: 24px 0px 24px 0px;
  }
}

label {
  font-size: 15px;
  font-weight: 500;
}

.form-control,
.form-select {
  box-shadow: var(--base-box-shadow);
  border: var(--base-border);
  border-radius: var(--base-border-radius);
}



.form-control:focus,
.form-select:focus {
  color: var(--base-color);
  background-color: #fff;
  border-color: var(--brand-color);
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(0, 64, 255, 0.25);
}

.form-check-input.xl-form-check {
  width: 20px;
  height: 20px;
}

.form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

.form-check-input:focus {
  border-color: var(--brand-color);
  /* Adjusts the border color */
  outline: none;
  /* Removes the default browser outline */
  box-shadow: 0 0 0 .25rem rgba(0, 64, 255, 0.25);
}

/* TO DO */

.token {
  padding: 2px 8px;
  background-color: var(--offwhite);
  color: var(--base-color);
  border-radius: 30px;
  border: var(--base-border);
  font-size: var(--font-12);
  font-weight: 500;
  border-color: var(--offwhite);
}

.token.green {
  color: #027A48;
  background-color: #ECFDF3;
  border-color: #ECFDF3;
}

.token.red {
  color: #b91c1c;
  background-color: #fef2f2;
  border-color: #fef2f2;
}

.availabilityIndicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: green;
  position: absolute;
  top: 5px;
  right: 4px;
}

/* cards */
.summary-card {
  min-width: 200px;
}

.card {
  border: 1px solid #ededed;
  /* box-shadow: var(--base-box-shadow); */
  border-radius: var(--base-border-radius);
}

.card-header {
  background-color: #fff;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
}

.card-header {
  border-bottom: none;
}

.card-body {
  font-size: 14px;
}



/* Alert */
.alert {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
}


/* Booking specific */

.booking-summary>div {
  border-top: 1px solid #ededed;
  padding-top: 10px;
}

.booking-summary>div:first-child {
  border-top: none;
}


/* Login and sign-up */

#login-layout {
  display: flex;
  justify-content: center;
  /* Horizontal centering */
  align-items: center;
  /* Vertical centering */
  min-height: 100vh;
  /* Ensures the section takes at least the height of the viewport */
  max-width: 380px;
  margin: auto;
}

/* Optional: Responsive adjustment */
@media (max-width: 992px) {

  /* Adjust based on your layout's needs */
  #login-layout {
    padding: 20px;
  }
}

/* Utilities */
.unstyled {
  border: none;
  background-color: inherit;
  outline: transparent;
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none;
}

.show {
  display: flex;
}

/* FLASH messages  */
.flash-messages-container {
  padding: 8px;
  border-radius: var(--base-border-radius);
  border: var(--base-border);
  border-left: 3px solid #027A48;
  box-shadow: var(--base-box-shadow);
  gap: 8px;
  width: 320px;
  max-width: 100%;
  position: fixed;
  right: 16px;
  top: 10%;
  color: var(--base-color);
  background-color: #fff;
  z-index: 100;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* Dashboards */


.booking-details-row {
  border: 1px solid #EFEBEB;
  border-radius: 10px;
  padding: 16px;
  background-color: #fff;
}


@media (min-width:776px) {
  .booking-row-booking-date {
    border-right: 1px solid #ededed;
  }
}

.booking-details-day {
  font-size: 42px;
  margin-top: 10px;
  font-weight: 600;
}

.booking-month-section h2 {
  position: sticky;
  top: 0;
  width: 100%;
  /* left: 0; */
  background: #f9fafbcc;
}


/* Dropdown section */
.cursor-pointer {
  cursor: pointer;
}

/* Rotate icon when section is expanded */
[data-bs-toggle="collapse"][aria-expanded="true"] .dropdown-section-icon {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.dropdown-section-icon {
  transition: transform 0.2s ease;
}



/* Glassmorphism */
.glass-bg {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--base-border-radius);
}

.overlay-buttons {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
  .card:hover .overlay-buttons {
    opacity: 1;
    pointer-events: auto;
  }
}

.overlay-buttons.active {
  opacity: 1;
  pointer-events: auto;
}


/* Booking summary container */
.fixed-summary-button-container {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  z-index: 998;
  /* Just below the drawer z-index */

  box-shadow: var(--base-box-shadow);
}

.fixed-summary-button-container button {
  width: 92%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* For desktop */
@media (min-width: 996px) {
  .fixed-summary-button-container {
    position: relative;
    bottom: 0;
    left: 0;
  }

  .fixed-summary-button-container button {
    display: block;
    width: 100%;
    max-width: 100%;

  }
}


/* Footer */
footer {
  margin-top: auto;
}

@media (max-width: 992px) {
  footer {
    padding-left: 0px;
  }
}


/* Effects - Shimmer */
.shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 104px;
  display: inline-block;
  position: relative;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}


.dropdown-item {
  font-size: var(--font-14);
}

.dropdown-toggle::after {
  display: none !important;
}

/* Add spacing between text and icon */
.custom-dropdown-toggle i {
  margin-left: 0.25rem;
}

.dropdown-menu {
  border: var(--base-border);
  box-shadow: var(--base-box-shadow);
  border-radius: var(--base-border-radius);
}

.ql-editor {
  font-family: var(--font-family), sans-serif;
}

.profile-image-nav {
  width: 30px;
  /* Smaller size for nav */
  height: 30px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-image-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-booking-page {
  width: 55px;
  height: 55px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* This ensures the image doesn't overflow the circular container */
}

.profile-image-booking-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img {
  max-width: 100%;
}

.initials-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  /* Match image size */
  height: 30px;
  border-radius: 50%;
  background-color: var(--accent);
  /* Use your CSS variable */
  color: white;
  font-size: 12px;
  /* Adjust font size as needed */
  font-weight: 600;
  text-transform: uppercase;
}

.profile-nav-item .profile-name {
  /* Optional: ensure name doesn't wrap awkwardly */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* fonts */

.fs-10 {
  font-size: 10px;
  line-height: 16px;
}

.fs-12 {
  font-size: 12px;
  line-height: 18px;
}

.fs-13 {
  font-size: 13px;
  line-height: 20px;
}

.fs-14 {
  font-size: 14px;
  line-height: 22px;
}

.fs-16 {
  font-size: 16px;
  line-height: 24px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

/* Custom Submenu Tabs */
.submenu-tabs {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 2rem;
  overflow-x: auto;
  white-space: nowrap;
}

.submenu-tabs-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  min-width: max-content;
}

.submenu-tab-item {
  margin: 0;
  position: relative;
}

.submenu-tab-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.submenu-tab-link:hover {
  color: #475569;
  background-color: #e2e8f0;
  text-decoration: none;
}

.submenu-tab-item.active .submenu-tab-link {
  color: #1e293b;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.submenu-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.submenu-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Mobile responsiveness for tabs */
@media (max-width: 768px) {
  .submenu-tabs {
    /* margin: 0 -15px 2rem -15px; */
    /* border-radius: 0; */
    border-left: none;
    border-right: none;
  }

  .submenu-tab-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* Tab badge support */
.submenu-tab-badge {
  display: inline-block;
  background-color: #ef4444;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
  line-height: 1;
}

.submenu-tab-item.active .submenu-tab-badge {
  background-color: #3b82f6;
}

.page-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 4px;
}

.page-tabs {
  display: inline-flex !important;
  width: auto;
}

.page-tabs .tab {
  padding: 4px 8px;
  display: flex;
  color: #717680;
  white-space: nowrap;
  align-items: center;
}

.tab a {
  color: #717680;
}

.tab.active {
  color: #414651;
  background: white;
  box-shadow: var(--base-box-shadow);
  border: var(--base-border)
}

.tab.active a {
  color: #414651;
}

.rounded {
  border-radius: var(--base-border-radius);
}


.search-input-icon {
  position: absolute;
  left: 12px;
  /* Match existing input padding */
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-gray-500);
  /* Optional: adjust icon color */
  z-index: 10;
  /* Ensure icon is above input background */
}

/* Custom Accordion Styles */
.accordion {
  width: 100%;
}

.accordion-item {
  border: var(--base-border);
  border-radius: var(--base-border-radius);
  margin-bottom: 0.5rem;
  background-color: #fff;
  overflow: hidden;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: var(--base-border-radius) !important;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header.active {
  background-color: #f9f9f9;
  border-bottom: var(--base-border);
}

.accordion-question {
  font-weight: 400;
  color: var(--base-color);
  flex: 1;
  padding-right: 1rem;
}

.accordion-header.active .accordion-question {
  color: var(--brand-color);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--grey);
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--brand-color);
}

.accordion-content {
  /* max-height is set dynamically by JavaScript */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer {
  padding: 1rem 1.25rem;
  /* color: var(--grey); */
  line-height: 1.6;
}

.faq-answer ol,
.faq-answer ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.25rem;
}

.sync-instructions {
  padding: 1rem 1.25rem;
  font-size: var(--font-14);
  color: var(--grey);
  line-height: 1.6;
}

.sync-instructions ol {
  margin: 0;
  padding-left: 1.5rem;
}

.sync-instructions li {
  margin-bottom: 0.5rem;
}