@charset "UTF-8";
/* Trainer Profile Styling */
.page-template-page-edit-profile-trainer-php .choices,
.page-template-page-edit-profile-trainer-php .choices__inner,
.page-template-page-edit-profile-trainee-php .choices,
.page-template-page-edit-profile-trainee-php .choices__inner {
  padding: 0;
  border-radius: 10px !important;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__list--multiple,
.page-template-page-edit-profile-trainee-php .choices[data-type*=select-multiple] .choices__list--multiple {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__list--multiple .choices__item,
.page-template-page-edit-profile-trainee-php .choices[data-type*=select-multiple] .choices__list--multiple .choices__item {
  display: none !important;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__input--cloned,
.page-template-page-edit-profile-trainee-php .choices[data-type*=select-multiple] .choices__input--cloned {
  width: 100% !important;
  min-width: 100% !important;
  margin: 0 !important;
  font-size: 16px !important;
  color: #222023 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: white !important;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__input--cloned:focus,
.page-template-page-edit-profile-trainee-php .choices[data-type*=select-multiple] .choices__input--cloned:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.page-template-page-edit-profile-trainer-php .choices__list--dropdown,
.page-template-page-edit-profile-trainee-php .choices__list--dropdown {
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #E5E7EB !important;
}
.page-template-page-edit-profile-trainer-php .choices.is-focused .choices__inner,
.page-template-page-edit-profile-trainer-php .choices.is-open .choices__inner,
.page-template-page-edit-profile-trainee-php .choices.is-focused .choices__inner,
.page-template-page-edit-profile-trainee-php .choices.is-open .choices__inner {
  border-color: #DEAAFF !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(222, 170, 255, 0.45) !important;
  border-radius: 10px !important;
}

.page-template-page-edit-profile-trainer-php .choices__list--multiple .choices__item {
  background-color: #D8B4FE !important;
  border: 1px solid #D8B4FE !important;
  color: #581C87 !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__button {
  border-left: 1px solid #C084FC !important;
  filter: invert(1);
}
.page-template-page-edit-profile-trainer-php #disciplines-select {
  padding: 10px;
}
.page-template-page-edit-profile-trainer-php .choices[data-type*=select-multiple] .choices__input--cloned {
  padding: 10px !important;
}

.page-template-page-edit-profile-trainee-php .choices__inner {
  background: #FFF !important;
  border: 1px solid #C1C1C1 !important;
  padding: 10px 14px !important;
  height: 48px !important;
}
.page-template-page-edit-profile-trainee-php #preferred-sports {
  padding: 10px;
}
.page-template-page-edit-profile-trainee-php .choices[data-type*=select-multiple] .choices__input--cloned {
  padding: 0 !important;
}

@keyframes registerTrainerFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-template-page-register-trainer-php .animate-fade-in {
  animation: registerTrainerFadeIn 0.4s ease-out;
}
.page-template-page-register-trainer-php .step-node.active {
  z-index: 20;
}
.page-template-page-register-trainer-php .profile-type-option__card {
  border: 1px solid #D8D8D8;
}
.page-template-page-register-trainer-php .profile-type-option__input:checked + .profile-type-option__card {
  border: 2px solid #DEAAFF;
  box-shadow: 0 0 32px 0 #DEAAFF;
}
.page-template-page-register-trainer-php .profile-type-option__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.page-template-page-register-trainer-php .profile-type-option__input:checked + .profile-type-option__card .profile-type-option__badge,
.page-template-page-register-trainer-php .profile-type-option__card--summary.is-active .profile-type-option__badge {
  opacity: 1;
  transform: scale(1);
}
.page-template-page-register-trainer-php .profile-type-option__card--summary {
  cursor: pointer;
}
.page-template-page-register-trainer-php .profile-type-option__card--summary.is-active {
  border: 2px solid #DEAAFF;
  box-shadow: 0 0 32px 0 #DEAAFF;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-template-page-onboarding-trainer-step-3-php .dropzone,
.page-template-page-onboarding-trainer-step-4-php .dropzone {
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: white;
  padding: 24px;
  text-align: center;
  cursor: pointer;
}

.page-template-page-onboarding-trainer-step-3-php .avatar-circle {
  width: 190px;
  height: 190px;
  background: linear-gradient(0deg, #F2F2F2 0%, #F2F2F2 100%);
  background-blend-mode: multiply, normal;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  flex-shrink: 0;
}
.page-template-page-onboarding-trainer-step-3-php .avatar-circle .avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-onboarding-trainer-step-3-php .gallery-item {
  aspect-ratio: 1/1;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-onboarding-trainer-step-3-php .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.page-template-page-onboarding-trainer-step-3-php .gallery-item .x-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.page-template-page-onboarding-trainer-step-4-php .cert-row {
  margin-bottom: 20px;
  position: relative;
}
.page-template-page-onboarding-trainer-step-4-php .btn-view {
  color: #828282;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-template-page-onboarding-trainer-step-4-php .btn-remove {
  color: #828282;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.page-template-page-onboarding-trainer-step-4-php .btn-view.disabled {
  pointer-events: none;
  opacity: 0;
}

.trainer-sidebar {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.trainer-card {
  border: 1px solid #D6D6D6;
  border-radius: 20px;
}

.btn-secondary-outline {
  border: 1.5px solid #E5E7EB;
  border-radius: 9999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4B5563;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.btn-secondary-outline:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  color: #111827;
}

.btn-cancel,
.btn-cancel-plan {
  background: #EB5757;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.profile-avatar-large {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
}

.placeholder-img {
  background: #F3F4F6;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}

.nav-arrow {
  background: #522A70;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nav-arrow:hover {
  background: #412654;
}

.trainer-profile-gallery-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 28px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.trainer-profile-gallery-slider.is-slider-ready {
  opacity: 1;
}
.trainer-profile-gallery-slider .trainer-profile-gallery-swiper {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.trainer-profile-gallery-slider .trainer-profile-gallery-swiper .swiper-wrapper {
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}
.trainer-profile-gallery-slider .trainer-profile-gallery-swiper .swiper-slide {
  width: auto;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}
.trainer-profile-gallery-slider .trainer-profile-gallery-slider__nav {
  display: flex;
}
@media (max-width: 767px) {
  .trainer-profile-gallery-slider {
    padding: 0 0 72px;
    overflow: visible;
  }
}
.trainer-profile-gallery-slider.is-no-navigation {
  padding-left: 0;
  padding-right: 0;
}
.trainer-profile-gallery-slider.is-no-navigation .trainer-profile-gallery-swiper .swiper-wrapper {
  justify-content: flex-start;
}
.trainer-profile-gallery-slider.is-no-navigation .trainer-profile-gallery-slider__nav {
  display: none;
}
@media (max-width: 767px) {
  .trainer-profile-gallery-slider.is-no-navigation {
    padding-bottom: 0;
  }
}
.trainer-profile-gallery-slider.is-single-slide {
  padding-left: 0;
  padding-right: 0;
}
.trainer-profile-gallery-slider.is-single-slide .trainer-profile-gallery-swiper {
  overflow: visible;
}
.trainer-profile-gallery-slider.is-single-slide .trainer-profile-gallery-swiper .swiper-wrapper {
  display: block;
  transform: none !important;
}
.trainer-profile-gallery-slider.is-single-slide .trainer-profile-gallery-swiper .swiper-slide {
  width: 100% !important;
  max-width: 380px;
  margin: 0;
}

.trainer-profile-gallery-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  border: 1px solid #F3F4F7;
  background: #F3F4F6;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.trainer-profile-gallery-slide:hover {
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}
.trainer-profile-gallery-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.trainer-profile-gallery-slide:hover .trainer-profile-gallery-slide__image {
  transform: scale(1.08);
}
.trainer-profile-gallery-slide__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: #BDBDBD;
  text-align: center;
}
.trainer-profile-gallery-slide__placeholder-label {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  color: #BDBDBD;
}

.trainer-profile-gallery-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 8px;
  background: #522A70;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.trainer-profile-gallery-slider__nav:hover, .trainer-profile-gallery-slider__nav:focus, .trainer-profile-gallery-slider__nav:focus-visible {
  background: #412654;
}
.trainer-profile-gallery-slider__nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.trainer-profile-gallery-slider__nav--prev {
  left: 0;
}
.trainer-profile-gallery-slider__nav--next {
  right: 0;
}
@media (max-width: 767px) {
  .trainer-profile-gallery-slider__nav {
    top: auto;
    bottom: 0;
    transform: none;
    width: 42px;
    height: 42px;
    border-radius: 0.625rem;
  }
  .trainer-profile-gallery-slider__nav--prev {
    left: auto;
    right: 54px;
  }
  .trainer-profile-gallery-slider__nav--next {
    right: 0;
  }
}

/* Settings Page Specifics */
.settings-item {
  border-radius: 12px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 24px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  .settings-item {
    padding: 12px;
  }
}
.settings-item.is-accordion {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.settings-item.is-accordion .accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 600px) {
  .settings-item.is-accordion .accordion-header {
    padding: 12px;
  }
}
.settings-item.is-accordion .accordion-header .accordion-toggle-icon {
  font-family: sans-serif;
  font-weight: 300;
  color: #9CA3AF;
  user-select: none;
  font-size: 1.5rem;
}
.settings-item.is-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  opacity: 0;
}
@media (max-width: 600px) {
  .settings-item.is-accordion .accordion-content {
    padding: 0 12px;
  }
}
.settings-item.is-accordion .accordion-content.is-open {
  max-height: max-content; /* Large enough to fit content */
  opacity: 1;
  padding-bottom: 2rem;
}

/* Custom Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch input:checked + .toggle-slider {
  background: #DEAAFF;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5E7EB;
  transition: 0.3s;
  border-radius: 24px;
}
.toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.radio-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #222023;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  position: relative;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-container:hover .radio-mark {
  border-color: #C98DF0;
}
.radio-container input:checked + .radio-mark {
  border-color: #DEAAFF;
  border-width: 6px;
}

.radio-container > span:last-child {
  color: #222023 !important;
  font-size: 16px;
  font-weight: 500 !important;
  line-height: 150%;
}

.radio-mark {
  width: 24px;
  height: 24px;
  border: 2px solid #D8D8D8;
  border-radius: 9999px;
  background: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, border-width 0.2s ease;
}
.radio-mark::after {
  content: none;
}

/* Plan Page Styles */
.trainer-profile-plan-card.monthly-plan-card {
  border: 1.333px solid #E0E0E0;
}
.trainer-profile-plan-card.monthly-plan-card .trainer-profile-plan-card__topbar--club {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 24px;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.trainer-profile-plan-card .trainer-profile-plan-card__body--plain {
  padding: 24px;
}
.trainer-profile-plan-card .trainer-profile-plan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.trainer-profile-plan-card .trainer-profile-plan-card__discount {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #FBD050;
  color: #522A70;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 56px;
  transform: rotate(45deg);
}
.trainer-profile-plan-card .trainer-profile-plan-card__features {
  list-style: none;
}
.trainer-profile-plan-card .trainer-profile-plan-card__footer {
  display: flex;
  align-items: center;
  gap: 20px 32px;
}
.trainer-profile-plan-card .trainer-profile-plan-card__button {
  min-width: 170px;
  flex-shrink: 0;
}
.trainer-profile-plan-card .trainer-profile-plan-card__button.is-selected {
  background: #EFD9FB;
  color: #522A70;
  box-shadow: none;
}
@media (max-width: 991px) {
  .trainer-profile-plan-card .trainer-profile-plan-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .trainer-profile-plan-card .trainer-profile-plan-card__button {
    width: 100%;
    min-width: 0;
  }
  .trainer-profile-plan-card .payment-history-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .trainer-profile-plan-card.monthly-plan-card .trainer-profile-plan-card__topbar--club {
    min-height: 44px;
    padding: 8px 16px;
  }
  .trainer-profile-plan-card .trainer-profile-plan-card__body--plain,
  .trainer-profile-plan-card .club-pricing-card-body {
    padding: 20px 18px;
  }
  .trainer-profile-plan-card .trainer-profile-plan-card__discount {
    top: 18px;
    right: -40px;
    font-size: 14px;
    padding: 6px 52px;
  }
}

body.page-template-page-moyat-plan-club-php .trainer-profile-plan-card.monthly-plan-card,
body.page-template-page-moyat-plan-club .trainer-profile-plan-card.monthly-plan-card {
  background: linear-gradient(270deg, #522A70 0%, #9D50D6 100%), #DEAAFF;
}

.plan-card {
  border-radius: 20px;
  border: 1px solid #E0E0E0;
  background: #FFF;
  padding: 16px 32px 24px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.plan-card.is-selected {
  border-color: #DEAAFF;
  box-shadow: 0 10px 30px rgba(82, 42, 112, 0.08);
}
.plan-card .plan-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #DEAAFF;
  color: white;
  padding: 0.25rem 2rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}
.plan-card .plan-tag.is-recommended {
  background: #FBBF24;
}
.plan-card .plan-discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.plan-card .plan-discount-badge .badge-inner {
  background: #FBBF24;
  color: #1F2937;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  padding: 0.25rem 0;
  width: 100px;
  position: absolute;
  top: 15px;
  right: -25px;
  transform: rotate(45deg);
}

.invoice-info-card {
  background: white;
  border-radius: 20px;
  border: 1.333px solid #E0E0E0;
  padding: 24px;
}
@media (max-width: 600px) {
  .invoice-info-card {
    padding: 14px;
  }
}
.invoice-info-card .info-label {
  font-weight: 500;
  font-size: 16px;
  color: #522A70;
  flex-shrink: 0;
}
.invoice-info-card .info-value {
  color: #828282;
  font-size: 16px;
  font-weight: 500;
}

.trainer-billing-edit-btn {
  width: max-content;
}
@media (max-width: 600px) {
  .trainer-billing-edit-btn {
    border: none;
    padding: 0;
    font-weight: 700;
    margin-top: 20px;
    font-size: 14px;
  }
}

.payment-history-item {
  border-radius: 20px;
  border: 1.5px solid #E0E0E0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 600px) {
  .payment-history-item {
    padding: 14px;
  }
}
@media (max-width: 800px) {
  .payment-history-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .payment-history-item .payment-date,
  .payment-history-item .payment-amount,
  .payment-history-item .payment-status-badge,
  .payment-history-item .payment-plan-name {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .payment-history-item .btn-download-invoice {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.payment-history-item .payment-status-badge {
  border-radius: 500px;
  background: #9CE6A3;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 32px;
}
.payment-history-item .btn-download-invoice {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

/* Modal Styles */
.sfc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sfc-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.sfc-modal .modal-content {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin: auto 0;
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.sfc-modal button.absolute {
  border: none;
  background: transparent;
  cursor: pointer;
}

.invite-trainer-page-layout {
  padding-bottom: 48px;
}

.invite-trainer-page {
  width: 100%;
  padding-bottom: 32px;
}
.invite-trainer-page__back {
  margin-bottom: 48px;
}
.invite-trainer-page__shell {
  max-width: 1040px;
  margin: 0 auto;
}
.invite-trainer-page__search {
  margin-bottom: 28px;
}
.invite-trainer-page #trainer-search-input {
  padding-left: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='12.8333' cy='12.8333' r='8.16667' stroke='%23522A70' stroke-width='2.2'/%3E%3Cpath d='M19 19L24 24' stroke='%23522A70' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 26px;
}
.invite-trainer-page #trainer-search-input::placeholder {
  color: #828282;
  font-size: 16px;
  font-weight: 500;
}
.invite-trainer-page .cancel-invite-btn,
.invite-trainer-page .send-invite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.invite-trainer-page .cancel-invite-btn svg,
.invite-trainer-page .send-invite-btn svg {
  flex: 0 0 auto;
}
.invite-trainer-page .cancel-invite-btn.is-invited,
.invite-trainer-page .send-invite-btn.is-invited {
  color: #EB5757;
}

.cancel-invite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cancel-invite-btn svg {
  flex: 0 0 auto;
}
.cancel-invite-btn.is-invited {
  color: #EB5757;
}

.invite-trainer-result-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.invite-trainer-result-card:hover {
  box-shadow: 0 10px 30px rgba(82, 42, 112, 0.08);
  transform: translateY(-1px);
}
.invite-trainer-result-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.invite-trainer-result-card__identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.invite-trainer-result-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eceff5;
}
.invite-trainer-result-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.invite-trainer-result-card__details {
  min-width: 0;
}
.invite-trainer-result-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f4d34f;
  color: #522A70;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.invite-trainer-result-card__name {
  margin: 0;
  color: #522A70;
  font-family: "Xolonium", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  word-break: break-word;
}
.invite-trainer-result-card__email {
  margin: 8px 0 0;
  color: #8e8e8e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}
.invite-trainer-result-card__message-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid #d7eefc;
  border-radius: 50%;
  background: #f1d75d;
  color: #522A70;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.invite-trainer-result-card__message-btn:hover, .invite-trainer-result-card__message-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(82, 42, 112, 0.14);
}
.invite-trainer-result-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.invite-trainer-result-card__profile-btn, .invite-trainer-result-card__invite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  font-size: 18px;
}
.invite-trainer-result-card__profile-btn {
  border-color: #d0d0d0;
  color: #522A70;
  background: #fff;
}
.invite-trainer-result-card__invite-btn.is-sent {
  background: #cfeecf;
  border-color: #cfeecf;
  color: #1f6b2a;
}

body.sfc-modal-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .sfc-modal {
    padding: 1.25rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
  }
  .sfc-modal .modal-content {
    margin: 0;
    max-height: calc(100dvh - 2.5rem - env(safe-area-inset-bottom));
  }
  .sfc-modal .confirm-modal-small {
    margin: auto 0;
  }
}
.btn-logout-full {
  background: #F3E8FF;
  color: #9333EA;
  font-weight: 700;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  margin-top: 2rem;
}
.btn-logout-full:hover {
  background: #E9D5FF;
  transform: translateY(-1px);
}

/* Calendar Styles */
.calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  background: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .calendar-wrapper {
    grid-template-columns: 1fr;
  }
}

.timeline-column {
  border-right: 1px solid #F3F4F6;
}
.timeline-column .timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(85, 85, 85, 0.25);
  padding: 25px;
  flex-wrap: wrap;
  gap: 20px;
}
.timeline-column .timeline-header h2 {
  color: #522A70;
  font-size: 18px;
  font-family: "Xolonium";
  margin: 0;
}

#open-info-modal {
  border: none;
  background-color: transparent;
  padding: 0 10px;
}

#close-info-modal-x {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: auto;
  margin-left: auto;
}

.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
@media (min-width: 500px) {
  .timeline-grid {
    padding: 0 20px;
  }
}

.timeline-slot {
  display: flex;
  height: 60px;
  border-bottom: 1px solid #EAE9FE;
  position: relative;
}
.timeline-slot:last-child {
  border-bottom: none;
}
.timeline-slot .slot-time {
  width: 60px;
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 700;
  padding-top: 4px;
  align-content: center;
  text-align: center;
}
.timeline-slot .slot-content {
  flex-grow: 1;
  border-left: 1px solid #F3F4F6;
  position: relative;
}

.calendar-event {
  position: absolute;
  top: 5px;
  left: 15px;
  right: 15px;
  background: #FFFFFF;
  border: 1.5px solid #F3F4F6;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 60px; /* Ensure space for handle */
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  width: 100%;
}
.calendar-event.event-busy {
  border-left: 10px solid rgb(227, 145, 176);
}
.calendar-event.event-activity {
  border-left: 10px solid #35D399;
  left: 0;
  right: auto;
  width: calc(100% - 10px);
  padding: 12px 16px;
  overflow: hidden;
  z-index: 50;
}
.calendar-event.event-recorded {
  left: 0;
  right: auto;
  width: calc(100% - 10px);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  border-left: 10px solid #10B981;
  overflow: hidden;
}
.calendar-event.event-recorded .event-title {
  display: block;
  font-size: 18px;
  color: rgb(82, 42, 112);
  font-family: "Xolonium";
  margin-bottom: 0.25rem;
  display: block;
  padding-right: 1.5rem;
}
.calendar-event.event-recorded .event-meta {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #828282;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.calendar-event.event-recorded .event-meta .event-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.calendar-event.event-recorded .event-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #522A70;
  stroke-width: 2;
}
.calendar-event .event-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #9CA3AF;
  border: none;
  background: white;
}
.calendar-event .event-title {
  font-size: 18px;
  color: #522A70;
  font-family: "Xolonium";
  margin-bottom: 0.25rem;
  display: block;
  padding-right: 1.5rem;
}
.calendar-event .event-meta {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #828282;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.calendar-event .event-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.calendar-event .event-drag-handle {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #E5E7EB;
  border-radius: 99px;
  cursor: ns-resize;
  transition: background 0.2s;
}
.calendar-event .event-drag-handle:hover {
  background: #D1D5DB;
}
.calendar-event .event-drag-handle::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

.day-cell.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.datepicker-column {
  padding: 25px;
  background: #FFFFFF;
  border-left: 1px solid #F3F4F6;
}
.datepicker-column .datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 430px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(65deg, #F29CB7 2.67%, #FBD050 97.1%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.datepicker-column .datepicker-header .month-year {
  font-family: "Xolonium";
  color: #522A70;
  font-size: 16px;
}
.datepicker-column .datepicker-header button {
  border: none;
  background-color: transparent;
  padding: 0;
}

.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.datepicker-grid .day-name {
  font-size: 0.7rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.datepicker-grid .day-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
  position: relative;
}
.datepicker-grid .day-cell:hover {
  background: #F5F3FF;
}
.datepicker-grid .day-cell.is-today {
  background: #DEAAFF;
  color: white;
  box-shadow: 0 4px 12px rgba(213, 151, 245, 0.3);
}
.datepicker-grid .day-cell.is-selected {
  border-color: #111827;
  color: #111827;
  background: #DEAAFF;
  /* Don't set background here to allow is-closed or is-partial to show through */
}
.datepicker-grid .day-cell.is-closed {
  background: #F3F4F6 !important;
  color: #9CA3AF;
}
.datepicker-grid .day-cell.is-partial {
  background: linear-gradient(135deg, #FFFFFF 50%, #F3F4F6 50%) !important;
}
.datepicker-grid .day-cell.has-dots::after {
  content: "....";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 0;
}

.datepicker-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 15px;
}

.legend-section .legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  font-weight: 500;
  color: #828282;
  margin-bottom: 13px;
}
.legend-section .legend-item .legend-color {
  width: 27px;
  height: 27px;
  border-radius: 6px;
}
.legend-section .legend-item .legend-color.color-busy {
  background: #E0E0E0;
}
.legend-section .legend-item .legend-color.color-today {
  background: #DEAAFF;
}
.legend-section .legend-item .legend-color.color-recorded {
  background: #35D399;
}

/* Schedule Editor Modal */
.schedule-modal {
  max-width: 860px !important;
  padding: 0 !important;
  overflow: hidden;
}
.schedule-modal .modal-inner {
  padding: 30px;
}
.schedule-modal .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: none;
  background-color: transparent;
}
.schedule-modal .info-box {
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), linear-gradient(65deg, #F29CB7 2.67%, #FBD050 97.1%);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.schedule-modal .info-box .info-visual {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.schedule-modal .info-box .info-visual .mini-btn {
  background: #E9D5FF;
  color: #581C87;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
}
.schedule-modal .schedule-table {
  width: 100%;
  margin-bottom: 2.5rem;
}
.schedule-modal .schedule-table .table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #F3F4F6;
}
.schedule-modal .schedule-table .table-header span {
  font-size: 16px;
  font-weight: 500;
  color: #828282;
}
.schedule-modal .schedule-table .day-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  align-items: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #F3F4F6;
  text-align: left;
}
.schedule-modal .schedule-table .day-row:last-child {
  border-bottom: none;
}
.schedule-modal .schedule-table .day-row .day-name {
  font-size: 16px;
  font-weight: 500;
  color: #522A70;
}
.schedule-modal .schedule-table .day-row .time-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.schedule-modal .schedule-table .day-row .time-input-group input, .schedule-modal .schedule-table .day-row .time-input-group select {
  width: 100px;
  padding: 0.6rem 1rem;
  font-size: 16px;
  font-weight: 500;
  color: #828282;
  outline: none;
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.schedule-modal .schedule-table .day-row .time-input-group input:focus, .schedule-modal .schedule-table .day-row .time-input-group select:focus {
  border-color: #DEAAFF;
}
.schedule-modal .schedule-table .day-row .time-input-group span {
  font-size: 16px;
  font-weight: 500;
  color: #828282;
}

.trainer-sidebar-mobile-bar {
  margin-bottom: 1.5rem;
}

.trainer-sidebar-mobile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 67px;
  padding: 14px 18px;
  background: #DEAAFF;
  color: #222023;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.trainer-sidebar-mobile-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trainer-sidebar-drawer-overlay {
  --trainer-sidebar-offset: 2.75rem;
  position: fixed;
  top: var(--trainer-sidebar-offset);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 24, 39, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 96;
}
.trainer-sidebar-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trainer-sidebar-aside {
  --trainer-sidebar-offset: 2.75rem;
  position: fixed;
  top: var(--trainer-sidebar-offset);
  left: 0;
  width: min(340px, 100vw - 1.5rem);
  height: calc(100dvh - var(--trainer-sidebar-offset));
  background: #FFFFFF;
  box-shadow: 0 30px 60px -28px rgba(17, 24, 39, 0.45);
  transform: translateX(-110%);
  transition: transform 0.3s ease;
  z-index: 98;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 60px 20px;
}
.trainer-sidebar-aside.is-open {
  transform: translateX(0);
}

.trainer-sidebar-mobile-panel-head {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
}

.trainer-sidebar-mobile-panel-close {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

body.trainer-sidebar-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.profile-menu-tabs-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 500px;
  border: 1.5px solid #E0E0E0;
  background: #FFF;
  padding: 16px 24px;
  color: #222023;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.profile-menu-tabs-btn > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #DEAAFF;
}
.profile-menu-tabs-btn > span:last-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.profile-menu-tabs-btn svg {
  display: block;
}
.profile-menu-tabs-btn svg * {
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.profile-menu-tabs-btn:hover, .profile-menu-tabs-btn.is-active {
  border-color: #522A70;
  background: #522A70;
  color: #FFF;
}
.profile-menu-tabs-btn:hover > span:first-child, .profile-menu-tabs-btn.is-active > span:first-child {
  color: #FFF;
}
.profile-menu-tabs-btn:hover svg [fill]:not([fill=none]), .profile-menu-tabs-btn.is-active svg [fill]:not([fill=none]) {
  fill: currentColor !important;
}
.profile-menu-tabs-btn:hover svg [stroke]:not([stroke=none]), .profile-menu-tabs-btn.is-active svg [stroke]:not([stroke=none]) {
  stroke: currentColor !important;
}

.trainer-sidebar .grey-hr {
  display: block;
  width: 100%;
  height: 0;
  margin-left: 0;
  margin-right: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  opacity: 1;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .trainer-sidebar-mobile-bar,
  .trainer-sidebar-drawer-overlay,
  .trainer-sidebar-mobile-panel-head {
    display: none !important;
  }
  .trainer-sidebar-aside {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    overflow: visible;
    z-index: auto;
  }
}
@media (max-width: 1023px) {
  .trainer-sidebar {
    min-height: 100%;
  }
  .profile-menu-tabs-btn {
    padding: 15px 18px;
    font-size: 16px;
  }
  .profile-menu-tabs-btn > span:last-child {
    font-size: 16px;
  }
}
.weekly-schedule-bar .grid-cols-7 > div {
  min-width: 0;
}

.weekly-schedule-bar .rotate-45 {
  transform: rotate(45deg);
}

.weekly-schedule-bar .day-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 10px;
  width: 100%;
}
.weekly-schedule-bar .day-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #BCBCBC;
  flex-shrink: 0;
}
.weekly-schedule-bar .day-indicator__plus {
  color: #BCBCBC;
  font-size: 14px;
  line-height: 1;
}
.weekly-schedule-bar .day-indicator--active .day-indicator__dot {
  background: #522A70;
}
.weekly-schedule-bar .day-indicator--active .day-indicator__plus {
  color: #522A70;
}

#image-preview-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.activity-wizard .day-pill {
  position: relative;
  display: block;
  cursor: pointer;
}

.activity-wizard .day-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.activity-wizard .day-pill-box {
  min-width: 140px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid #CFCFCF;
  border-radius: 9999px;
  background: #FFF;
  color: #522A70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.activity-wizard .day-pill-box::after {
  content: "";
  display: none;
  width: 8px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  flex-shrink: 0;
}

.activity-wizard .day-pill:hover .day-pill-box {
  border-color: #BEBEBE;
}

.activity-wizard .day-pill input:focus-visible + .day-pill-box {
  outline: 3px solid rgba(222, 170, 255, 0.35);
  outline-offset: 2px;
}

.activity-wizard .day-pill input:checked + .day-pill-box {
  background: #522A70;
  border-color: #522A70;
  color: #FFF;
  box-shadow: 0 10px 24px rgba(82, 42, 112, 0.12);
}
.activity-wizard .day-pill input:checked + .day-pill-box::after {
  display: block;
}

@media (max-width: 767px) {
  .activity-wizard .day-pill-box {
    min-width: 140px;
    min-height: 56px;
    padding: 0 18px;
    font-size: 16px;
  }
}
.custom-checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid rgb(205, 205, 205);
  border-radius: 4px;
  background: #FFF;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom-checkbox svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.peer:checked + .custom-checkbox,
input[type=checkbox]:checked + .custom-checkbox {
  background: #522A70;
  border-color: #522A70;
}
.peer:checked + .custom-checkbox svg,
input[type=checkbox]:checked + .custom-checkbox svg {
  opacity: 1;
}

.peer:focus-visible + .custom-checkbox,
input[type=checkbox]:focus-visible + .custom-checkbox {
  outline: 3px solid rgba(222, 170, 255, 0.35);
  outline-offset: 2px;
}

label:hover .custom-checkbox {
  border-color: #412654;
  background: rgba(82, 42, 112, 0.08);
}

label:hover .peer:checked + .custom-checkbox,
label:hover input[type=checkbox]:checked + .custom-checkbox {
  background: #412654;
  border-color: #412654;
}

.workout-builder-block .toggle-switch + span {
  color: #828282;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.workout-builder-block .recurrence-day {
  min-width: 90px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid #D8D8D8;
  border-radius: 9999px;
  background: #FFF;
  color: #522A70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.workout-builder-block .recurrence-day::after {
  content: "";
  display: none;
  width: 8px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}
.workout-builder-block .recurrence-day:hover {
  border-color: #C98DF0;
}
.workout-builder-block .recurrence-day.active {
  background: #522A70;
  border-color: #522A70;
  color: #FFF;
  box-shadow: 0 10px 20px rgba(82, 42, 112, 0.16);
}
.workout-builder-block .recurrence-day.active::after {
  display: block;
}

.error-msg {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-left: 0.25rem;
  margin-bottom: 0;
}

.activity-card-horizontal {
  display: flex;
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 800px) {
  .activity-card-horizontal {
    flex-direction: column;
  }
}

.activity-card-horizontal__media {
  width: 430px;
  min-width: 430px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F8F8F8;
  max-height: 280px;
}
@media (max-width: 1600px) {
  .activity-card-horizontal__media {
    width: 330px;
    min-width: 330px;
  }
}
@media (max-width: 800px) {
  .activity-card-horizontal__media {
    width: 100%;
    min-width: 0;
  }
}

.activity-card-horizontal__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.activity-card-horizontal__placeholder {
  width: 100%;
}

.show-activity-toggle {
  border-radius: 28px;
  border: 1px solid #C1C1C1;
  box-shadow: 0 3.818px 76.364px 0 rgba(167, 174, 193, 0.3);
  width: 42px;
  height: 42px;
  cursor: pointer;
  background-color: white;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
}

.activity-dropdown-menu {
  border-radius: 12px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 16px;
}

.week-navigation-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 500px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(65deg, #F29CB7 2.67%, #FBD050 97.1%);
  padding: 5px 15px;
  margin-bottom: 2rem;
}
.week-navigation-bar button {
  border: none;
  background-color: transparent;
  padding: 0;
}

.day-col:not(:last-child) {
  border-right: 1px solid #CCC;
}

@media (max-width: 767px) {
  .weekly-schedule-bar {
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .week-navigation-bar {
    gap: 0.5rem;
    border-radius: 20px;
    margin-bottom: 0;
  }
  .week-navigation-bar span {
    flex: 1 1 auto;
    text-align: center;
    line-height: 1.2;
  }
  .week-navigation-bar button svg {
    width: 28px;
    height: 28px;
  }
  #days-container {
    gap: 0;
  }
  .day-col {
    min-width: 0;
  }
  .day-col:not(:last-child) {
    border-right: none;
  }
  .day-label {
    margin-bottom: 0.75rem;
    font-size: 0;
    line-height: 1;
    color: #9A9A9A;
  }
  .day-label::before {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }
  .day-col:nth-child(1) .day-label::before {
    content: "ПН";
  }
  .day-col:nth-child(2) .day-label::before {
    content: "ВТ";
  }
  .day-col:nth-child(3) .day-label::before {
    content: "СР";
  }
  .day-col:nth-child(4) .day-label::before {
    content: "ЧТ";
  }
  .day-col:nth-child(5) .day-label::before {
    content: "ПТ";
  }
  .day-col:nth-child(6) .day-label::before {
    content: "СБ";
  }
  .day-col:nth-child(7) .day-label::before {
    content: "НД";
  }
  .day-number {
    width: 100% !important;
    max-width: 46px;
    min-height: 54px;
    height: auto !important;
    padding: 8px 3px 7px;
    gap: 0.35rem !important;
    border-radius: 14px !important;
    box-shadow: none !important;
  }
  .day-number > span:first-child {
    font-size: 15px !important;
    line-height: 1;
  }
  .day-number .day-indicator {
    gap: 3px;
    min-height: 8px;
  }
  .day-number .day-indicator__dot {
    width: 4px;
    height: 4px;
  }
  .day-number .day-indicator__plus {
    font-size: 11px;
  }
  .day-number--active {
    background: #DEAAFF !important;
    border: 1.2px solid #522A70 !important;
  }
  .day-number--inactive {
    background: transparent !important;
    border: none !important;
  }
}
.add-workout-button-section {
  border-radius: 10px;
  border: 1px solid rgba(85, 85, 85, 0.25);
  background: #FFF;
}

.workout-video-area {
  border-radius: 10px;
  border: 1px dashed #C1C1C1;
  background: white;
  padding: 24px 16px;
}

.exercise-block {
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 20px;
}

.delete-ex-btn {
  padding: 16px 24px;
  border-radius: 500px;
  background: #EB5757;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.chat-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.club-dashboard-tab,
.chat-tab-btn {
  border-radius: 67px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 12px 64px;
  min-height: 48px;
  color: #522A70;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 600px) {
  .club-dashboard-tab,
  .chat-tab-btn {
    width: 50%;
    padding: 12px;
  }
}
.club-dashboard-tab:visited,
.chat-tab-btn:visited {
  color: #522A70;
}
.club-dashboard-tab:hover, .club-dashboard-tab:focus, .club-dashboard-tab:focus-visible,
.chat-tab-btn:hover,
.chat-tab-btn:focus,
.chat-tab-btn:focus-visible {
  background-color: #DEAAFF;
  color: #522A70;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #DEAAFF;
}
.club-dashboard-tab--active,
.chat-tab-btn--active {
  border: 1px solid #DEAAFF;
  background-color: #DEAAFF;
  color: #222023;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
}
.club-dashboard-tab--active:visited,
.chat-tab-btn--active:visited {
  color: #222023;
}
.club-dashboard-tab--active:hover, .club-dashboard-tab--active:focus, .club-dashboard-tab--active:focus-visible,
.chat-tab-btn--active:hover,
.chat-tab-btn--active:focus,
.chat-tab-btn--active:focus-visible {
  background-color: #DEAAFF;
  border: 1px solid #DEAAFF;
  color: #FFF;
}
.club-dashboard-tab.is-active,
.chat-tab-btn.is-active {
  border: 1px solid #DEAAFF;
  background-color: #DEAAFF;
  color: #222023;
}
.club-dashboard-tab.is-active:visited,
.chat-tab-btn.is-active:visited {
  color: #222023;
}
.club-dashboard-tab.is-active:hover, .club-dashboard-tab.is-active:focus, .club-dashboard-tab.is-active:focus-visible,
.chat-tab-btn.is-active:hover,
.chat-tab-btn.is-active:focus,
.chat-tab-btn.is-active:focus-visible {
  background-color: #DEAAFF;
  border: 1px solid #DEAAFF;
  color: #FFF;
}

.chat-header-avatar {
  position: relative;
}
.chat-header-avatar--online::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #22C55E;
  border: 2px solid #FFF;
  box-sizing: content-box;
}

#chat-messages-container > .flex-row-reverse > .flex.flex-col.items-end > div:first-child {
  background: #522A70 !important;
  color: #FFF !important;
}
#chat-messages-container > .flex-row-reverse > .flex.flex-col.items-end > div:first-child a {
  color: #FFF !important;
}
#chat-messages-container > .flex-row-reverse > .flex.flex-col.items-end > div:first-child a.flex {
  background: rgba(255, 255, 255, 0.16) !important;
}
#chat-messages-container > .flex-row-reverse > .flex.flex-col.items-end > div:first-child a.flex:hover {
  background: rgba(255, 255, 255, 0.24) !important;
}
#chat-messages-container > .flex:not(.flex-row-reverse) > .flex.flex-col.items-start > div:first-child {
  background: #DEAAFF !important;
  color: #222023 !important;
}

.chat-input-bar {
  position: relative;
  padding: 12px 16px;
}
.chat-input-bar .flex-grow {
  position: static;
}
.chat-input-bar #chat-message-input {
  width: 100%;
  min-height: 24px;
  max-height: 180px;
  padding: 8px 64px 8px 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.5;
  resize: none;
  outline: none;
}
.chat-input-bar #chat-message-input:focus, .chat-input-bar #chat-message-input:focus-visible {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.chat-input-bar button[type=button] {
  position: absolute;
  left: 0px;
  border: none;
  background-color: white;
  width: 50px;
  cursor: pointer;
}
.chat-input-bar button[type=submit] {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #DEAAFF;
  border: none;
  cursor: pointer;
}

/* Family Member Cards */
.family-member-card {
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 24pxpx;
  margin-bottom: 16px;
}
.family-member-card .member-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (max-width: 420px) {
  .family-member-card .member-actions {
    flex-direction: column;
  }
}

.btn-delete-member {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: #EB5757;
  border: none;
  border-radius: 500px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.btn-delete-member:hover {
  background: #D94444;
  box-shadow: 0 4px 12px rgba(235, 87, 87, 0.3);
}

.btn-delete {
  border-radius: 9999px;
  background: #FFF;
  border: none;
}

.participant-attendance-card {
  border-radius: 20px;
  border: 1.2px solid #d2ccd8;
  box-shadow: none;
}
.participant-attendance-card .grey-hr {
  margin: 0;
}

.participant-attendance-card__header {
  padding: 20px 20px 18px;
}

.participant-attendance-card__avatar {
  width: 100px;
  height: 100px;
  background: #f3f6fb;
  flex-shrink: 0;
}

.participant-attendance-card__loyalty {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.participant-attendance-card__message-btn {
  width: 70px;
  height: 70px;
  background: #fbd050;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.participant-attendance-card__message-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(251, 208, 80, 0.28);
}

.participant-attendance-card__body {
  padding: 0 16px;
}

.participant-attendance-card__status {
  margin-bottom: 18px;
  color: #8b8b8b;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.3;
}

.participant-attendance-card__actions,
.participant-attendance-card__stats,
.participant-attendance-card__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.participant-attendance-card__stats,
.participant-attendance-card__footer {
  margin-top: 12px;
  padding: 0 16px;
}

.participant-attendance-card__footer {
  padding-bottom: 16px;
}

.participant-attendance-card__action-btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1.2px solid #cfcfd4;
  background: #fff;
  color: #522a70;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.participant-attendance-card__action-btn:hover:not(:disabled) {
  border-color: #522a70;
}
.participant-attendance-card__action-btn:disabled {
  cursor: wait;
  opacity: 0.85;
}
.participant-attendance-card__action-btn.is-showed-up {
  background: #f1fbf4;
  border-color: #22c55e;
  color: #22c55e;
}
.participant-attendance-card__action-btn.is-missed {
  background: #fff3f3;
  border-color: #ff3b30;
  color: #ff3b30;
}

.participant-attendance-card__stat {
  min-height: 48px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  gap: 12px;
}

.participant-attendance-card__stat-label,
.participant-attendance-card__stat > span:first-child {
  color: #522a70;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.participant-attendance-card__footer .primary-btn,
.participant-attendance-card__footer .secondary-btn {
  min-height: 54px;
  width: 100%;
}
@media (max-width: 600px) {
  .participant-attendance-card__footer .primary-btn,
  .participant-attendance-card__footer .secondary-btn {
    padding: 6px;
  }
}

.participant-attendance-card__footer > * {
  width: 100%;
}

@media (max-width: 767px) {
  .participant-attendance-card__header {
    padding: 16px 16px 14px;
  }
  .participant-attendance-card__avatar {
    width: 82px;
    height: 82px;
  }
  .participant-attendance-card__name {
    font-size: 1.75rem;
  }
  .participant-attendance-card__message-btn {
    width: 62px;
    height: 62px;
  }
}
.team-member-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px 22px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}
.team-member-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.team-member-card__badge {
  position: static;
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  background: #FBD050;
  color: #522A70;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  line-height: 1;
  text-transform: none;
}
.team-member-card__avatar {
  grid-column: 1;
  grid-row: 1/span 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #F3F4F6;
}
.team-member-card__name {
  grid-column: 2;
  margin: 0;
  font-family: "Xolonium", sans-serif;
  font-size: clamp(24px, 2.3vw, 30px);
  color: #522A70;
  line-height: 1.1;
}
.team-member-card__message-btn {
  position: static;
  grid-column: 3;
  grid-row: 1/span 2;
  justify-self: end;
  width: 72px;
  height: 72px;
  background: #FBD050;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #522A70;
}
.team-member-card__footer {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #E8E5EC;
}
.team-member-card__btn-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  background: #D9B0FF;
  color: #522A70;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
}
.team-member-card__btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  background: #fff;
  color: #EB5757;
  border: 1px solid #DED9E7;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
}
.team-member-card__btn-remove::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M9.1799 7.75782L15.2218 13.7999C15.615 14.1929 15.615 14.8283 15.2218 15.2214C14.8288 15.6144 14.1933 15.6144 13.8003 15.2214L7.75825 9.17929L1.71636 15.2214C1.32317 15.6144 0.687908 15.6144 0.294897 15.2214C-0.0982988 14.8283 -0.0982988 14.1929 0.294897 13.7999L6.33678 7.75782L0.294897 1.71576C-0.0982988 1.32275 -0.0982988 0.687302 0.294897 0.294291C0.490758 0.0982447 0.748286 -0.000238419 1.00563 -0.000238419C1.26297 -0.000238419 1.52032 0.0982447 1.71636 0.294291L7.75825 6.33636L13.8003 0.294291C13.9964 0.0982447 14.2537 -0.000238419 14.511 -0.000238419C14.7684 -0.000238419 15.0257 0.0982447 15.2218 0.294291C15.615 0.687302 15.615 1.32275 15.2218 1.71576L9.1799 7.75782Z' fill='%23EB5757'/%3E%3C/svg%3E");
}
.team-member-card > p {
  grid-column: 2;
  margin: 6px 0 0 !important;
  text-align: left !important;
}
.team-member-card__footer > .w-full {
  grid-column: 1/-1;
}

.location-manage-card {
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* 2-Step Form Styles */
.location-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-bottom: 60px;
  position: relative;
}
.location-step-indicator::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: #E5E7EB;
  z-index: 1;
}

.location-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #828282;
  position: relative;
  z-index: 2;
}
.location-step-dot.is-active {
  background: #EFD9FB;
  color: #522A70;
}

.location-form-box {
  background: #fff;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.location-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.location-form-title {
  font-family: "Xolonium", sans-serif;
  font-size: 56px;
  color: #522A70;
  margin-bottom: 12px;
}

.location-form-section-title {
  font-family: "Xolonium", sans-serif;
  font-size: 24px;
  color: #522A70;
  margin-bottom: 8px;
}

.location-form-subtitle {
  color: #828282;
  font-size: 16px;
  margin-bottom: 32px;
}

.location-form-footer {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .location-form-title {
    font-size: 32px;
  }
  .location-manage-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .location-manage-card__edit-btn {
    width: 100%;
    justify-content: center;
  }
}
#activities-container {
  margin-bottom: 20px;
}

.confirmed {
  border-radius: 24px;
  border: 1px solid #27AE60;
  background: #C9EBD7;
  color: #27AE60;
  font-size: 14px;
  font-weight: 500;
}

#trainer-note-content {
  resize: vertical;
}

#activity-modal .activity-timeline {
  position: relative;
}
#activity-modal .timeline-item {
  align-items: flex-start;
}
#activity-modal .timeline-item > div:nth-child(2) {
  display: flex;
  justify-content: center;
  position: relative;
  align-self: stretch;
  min-height: 72px;
}
#activity-modal .timeline-item > div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: -28px;
  left: 50%;
  width: 1px;
  background: #C1C1C1;
  transform: translateX(-50%);
  z-index: 1;
}
#activity-modal .timeline-item > div:nth-child(2) > div:first-child {
  position: relative;
  z-index: 2;
}
#activity-modal .timeline-item > div:nth-child(2) > div:last-child {
  display: none;
}
#activity-modal .timeline-item:last-child > div:nth-child(2)::after {
  display: none;
}

.program-workout-accordion {
  background: #FFF;
}
.program-workout-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.program-workout-accordion__heading {
  flex: 1 1 auto;
}
.program-workout-accordion__icon {
  flex-shrink: 0;
  width: 24px;
  min-width: 24px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  margin-top: 2px;
}
.program-workout-accordion__icon::before {
  content: "-";
  color: #6F6F6F;
  font-size: 28px;
  line-height: 1;
}
.program-workout-accordion:not(.is-open) .program-workout-accordion__icon::before {
  content: "+";
}
.program-workout-accordion__content {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: #FAFAFA;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.program-workout-accordion.is-open .program-workout-accordion__content {
  opacity: 1;
}
.program-workout-accordion__content-inner {
  display: flex;
  flex-direction: column;
}
.program-workout-accordion__video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  min-height: 360px;
}

.tabs-single-activity {
  flex-direction: row;
}
@media (max-width: 550px) {
  .tabs-single-activity {
    flex-direction: column;
  }
  .tabs-single-activity button {
    width: 100%;
  }
}

.trainer-activity-tab-btn {
  display: flex;
  justify-content: center;
}

#chat-options-menu {
  border-radius: 12px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  padding: 16px;
}

.participant-card .flex-buttons {
  flex-direction: row;
}
@media (max-width: 480px) {
  .participant-card .flex-buttons {
    flex-direction: column;
  }
  .participant-card .flex-buttons button, .participant-card .flex-buttons a {
    width: 100%;
  }
}

.activity-list .activity-item {
  flex-direction: row;
}
@media (max-width: 480px) {
  .activity-list .activity-item {
    flex-direction: column;
    gap: 10px;
  }
}

.attendance-card {
  display: flex;
  border-radius: 10px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  max-height: 210px;
}
@media (max-width: 500px) {
  .attendance-card {
    flex-direction: column;
    max-height: max-content;
  }
}

.attendance-card__media {
  width: 430px;
  min-width: 430px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F8F8F8;
  max-height: 280px;
}
@media (max-width: 1600px) {
  .attendance-card__media {
    width: 330px;
    min-width: 330px;
  }
}
@media (max-width: 767px) {
  .attendance-card__media {
    width: 250px;
    min-width: 250px;
  }
}
@media (max-width: 500px) {
  .attendance-card__media {
    width: 100%;
    min-width: 0;
  }
}

.attendance-card_image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.note-card {
  border-radius: 12px;
  border: 1px solid #C1C1C1;
  background: #FFF;
}

.trainer-activity-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 80px;
  border-radius: 67px;
  border: 1px solid #C1C1C1;
  background: #FFF;
  color: #522A70;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trainer-activity-tab-btn svg [fill]:not([fill=none]) {
  fill: #DEAAFF;
  transition: fill 0.2s ease;
}

.trainer-activity-tab-btn svg [stroke]:not([stroke=none]) {
  stroke: #DEAAFF;
  transition: stroke 0.2s ease;
}

.trainer-activity-tab-btn:hover,
.trainer-activity-tab-btn:focus,
.trainer-activity-tab-btn:focus-visible {
  background: #DEAAFF;
  color: #522A70;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  border-color: #DEAAFF;
}

.trainer-activity-tab-btn:hover svg [fill]:not([fill=none]),
.trainer-activity-tab-btn:focus svg [fill]:not([fill=none]),
.trainer-activity-tab-btn:focus-visible svg [fill]:not([fill=none]) {
  fill: #522A70;
}

.trainer-activity-tab-btn:hover svg [stroke]:not([stroke=none]),
.trainer-activity-tab-btn:focus svg [stroke]:not([stroke=none]),
.trainer-activity-tab-btn:focus-visible svg [stroke]:not([stroke=none]) {
  stroke: #522A70;
}

.trainer-activity-tab-btn.is-active {
  background: #522A70;
  border-color: #522A70;
  color: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
}

.trainer-activity-tab-btn.is-active svg [fill]:not([fill=none]) {
  fill: #FFF;
}

.trainer-activity-tab-btn.is-active svg [stroke]:not([stroke=none]) {
  stroke: #FFF;
}

.trainer-activity-breakpoint-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 620px) {
  .trainer-activity-breakpoint-row {
    flex-direction: row;
    align-items: center;
  }
}
.trainer-discipline-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #DEAAFF;
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.trainer-discipline-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  color: black;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  background-color: transparent;
}

.avatar-preview {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #F3F4F6;
  overflow: hidden;
  position: relative;
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-action {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-slot {
  aspect-ratio: 1/1;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-remove {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cert-item {
  margin-bottom: 15px;
  position: relative;
  margin-top: 20px;
}

.cert-item input:disabled,
.cert-item input[readonly] {
  color: #6B7280 !important;
  cursor: default !important;
  opacity: 0.8;
}

.cert-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #828282;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}

.remove-cert {
  text-decoration: underline;
}

.dropzone-compact {
  background: #fff;
  border: 1.5px dashed #E5E7EB;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

/* ─── Change Password Page ─── */
.scp-card {
  background: #fff;
  border: 1px solid #C1C1C1;
  border-radius: 20px;
  padding: 40px;
  max-width: 680px;
}

@media (max-width: 640px) {
  .scp-card {
    padding: 24px 18px;
  }
}
.scp-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.scp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 20px; */
}

@media (max-width: 600px) {
  .scp-row {
    grid-template-columns: 1fr;
  }
}
.scp-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.scp-input-wrap input {
  width: 100%;
  padding-right: 48px;
}

.scp-toggle-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: #828282;
  transition: color 0.2s;
  min-height: unset;
  border-radius: 0;
}

.scp-toggle-eye:hover {
  color: #522A70;
  background: none;
}

.scp-field-error {
  font-size: 12px;
  font-weight: 600;
  color: #EF4444;
  margin-top: 2px;
}

.scp-field-error.hidden {
  display: none;
}

/* .scp-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
} */
.scp-cancel-btn {
  min-width: 130px;
}

.scp-submit-btn {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.scp-spinner {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Strength bar */
.scp-strength-wrap {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scp-strength-wrap.hidden {
  display: none;
}

.scp-strength-bar {
  flex: 1;
  height: 6px;
  background: #E5E7EB;
  border-radius: 99px;
  overflow: hidden;
}

.scp-strength-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.scp-strength-label {
  font-size: 12px;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

/* Global message styles */
#scp-messages.scp-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInDown 0.3s ease;
}

#scp-messages.scp-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Input error state */
input.scp-input-error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Loader */
.dashboard-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 2rem;
}

.is-loading .dashboard-loader {
  display: flex;
}

.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}/*# sourceMappingURL=profile.css.map */
