@import "../Bootstrap/bootstrap.css";
.calendar-grid {
  display: grid;
  grid-template-columns: auto repeat(7, 1fr) auto;
  gap: 0.5rem;
  align-items: start;
}
.calendar-grid .nav-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-grid .nav-button-wrapper .nav-button {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
}
.calendar-grid .nav-button-wrapper .nav-button:disabled {
  color: var(--text-light, #6b7280);
  cursor: default;
}
.calendar-grid .day-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  height: 100%;
}
.calendar-grid .day-label strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-strong, #555);
}
.calendar-grid .day-label span {
  font-size: 0.75rem;
  color: var(--text-strong, #555);
}
.calendar-grid .day-label.selected-day {
  background-color: var(--primary-color);
}
.calendar-grid .day-label.selected-day strong,
.calendar-grid .day-label.selected-day span {
  color: var(--text-white, #ffffff);
}
.calendar-grid .time-slot {
  background-color: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
}
.calendar-grid .time-slot:hover {
  background-color: rgba(var(--primary-color-light-20-rgb), 0.1);
  box-shadow: 0 0 0 2px var(--primary-color);
}
.calendar-grid .time-slot:focus-visible {
  outline: none;
  background-color: rgba(var(--primary-color-light-20-rgb), 0.1);
  box-shadow: 0 0 0 2px var(--primary-color);
}
.calendar-grid .time-slot.selected-time-slot {
  background-color: var(--primary-color);
  color: var(--text-white, #ffffff);
  border-color: var(--primary-color);
}
.calendar-grid .empty-cell {
  visibility: hidden;
}

.no-slots-message {
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 10px;
  padding: 20px;
  color: var(--text-strong, #555);
  user-select: none;
}
.no-slots-message p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.no-slots-message strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-strong, #555);
}
.no-slots-message .alternative-employees {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10px;
}
.no-slots-message .employee-card {
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
}
.no-slots-message .employee-card:hover, .no-slots-message .employee-card:focus {
  border-color: var(--primary-color);
  outline: none;
}
.no-slots-message .employee-card .employee-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.no-slots-message .employee-card .employee-avatar i {
  font-size: 20px;
}
.no-slots-message .employee-card .avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 50%;
}
.no-slots-message .employee-card .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.no-slots-message .employee-card .employee-name {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  user-select: none;
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.selected-employee-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-radius: 0;
  box-shadow: none;
}
.selected-employee-info .employee-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  color: var(--text-dark, #222831);
  font-weight: 500;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  flex-shrink: 0;
}
.selected-employee-info .employee-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.selected-employee-info .employee-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e0e0e0 25%, #c7c7c7 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.selected-employee-info .employee-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark, #222831);
  user-select: none;
  white-space: nowrap;
}

.login-page,
.register-page {
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: var(--bg-light, #f9fafb);
}

.login-container,
.register-container {
  background: var(--bg-white, #ffffff);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 640px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.login-container a,
.register-container a {
  color: var(--primary-color);
  text-decoration: none;
}
.login-container a:hover,
.register-container a:hover {
  text-decoration: underline;
}
.login-container a:focus-visible,
.register-container a:focus-visible {
  text-decoration: underline;
  outline: none;
}
@media (max-width: 600px) {
  .login-container,
  .register-container {
    padding: 1.2rem;
  }
}
.login-container .header-img,
.register-container .header-img {
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  width: 120px;
  height: 120px;
}
@media (max-width: 600px) {
  .login-container .header-img,
  .register-container .header-img {
    width: 100px;
    height: 100px;
  }
}

.login-form,
.register-form,
.set-password-form,
.resend-password-form {
  text-align: start;
}
.login-form .options-wrapper,
.register-form .options-wrapper,
.set-password-form .options-wrapper,
.resend-password-form .options-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-form .options-wrapper a:hover,
.register-form .options-wrapper a:hover,
.set-password-form .options-wrapper a:hover,
.resend-password-form .options-wrapper a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.login-form .options-wrapper .option-item,
.register-form .options-wrapper .option-item,
.set-password-form .options-wrapper .option-item,
.resend-password-form .options-wrapper .option-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-color, #333);
}
@media (max-width: 600px) {
  .login-form .options-wrapper,
  .register-form .options-wrapper,
  .set-password-form .options-wrapper,
  .resend-password-form .options-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .login-form .options-wrapper .option-item,
  .register-form .options-wrapper .option-item,
  .set-password-form .options-wrapper .option-item,
  .resend-password-form .options-wrapper .option-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
  }
  .login-form .options-wrapper .forgot-password-link,
  .register-form .options-wrapper .forgot-password-link,
  .set-password-form .options-wrapper .forgot-password-link,
  .resend-password-form .options-wrapper .forgot-password-link {
    margin-top: 0.5rem;
  }
}
.login-form .forgot-password-link,
.register-form .forgot-password-link,
.set-password-form .forgot-password-link,
.resend-password-form .forgot-password-link {
  font-size: 0.9rem;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: var(--text-white, #ffffff);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-button:hover {
  background-color: var(--primary-color-light-10);
}
.submit-button:focus {
  box-shadow: 0 0 0 0.25rem var(--primary-color-light-40);
  outline: none;
}
@media (max-width: 600px) {
  .submit-button {
    font-size: 0.9rem;
  }
}

.register-section,
.login-section,
.reset-password-section {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.register-link a:hover, .login-link a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-label {
  font-size: 0.875rem;
  color: var(--secondary-color, #4b5563);
  cursor: pointer;
}

.back-to-login {
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}
.back-to-login i {
  text-decoration: none;
}
.back-to-login:hover span {
  text-decoration: underline;
}

.auth-header .header-img {
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
  width: 100px;
  height: 100px;
}
@media (max-width: 600px) {
  .auth-header .header-img {
    width: 80px;
    height: 80px;
  }
}

.input-wrapper {
  margin-bottom: 1rem;
}

.input-label {
  display: block;
  margin-bottom: 0.3rem;
}
.input-label .required {
  color: var(--error-color, #e74c3c);
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 0.5rem;
  overflow: hidden;
  padding-left: 2.4rem;
  position: relative;
}
.input-box.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.input-box.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.input-box:focus-within {
  border-color: var(--primary-color-light-20);
}
@media (max-width: 600px) {
  .input-box .input-field {
    padding: 0.5rem 0.5rem 0.5rem 0;
    font-size: 0.9rem;
  }
}

.input-error {
  color: var(--error-color, #e74c3c);
}

.input-icon {
  position: absolute;
  left: 0.6rem;
  color: var(--text-light, #6b7280);
  font-size: 1.2rem;
}

.input-field {
  flex: 1;
  padding: 0.6rem 0.5rem 0.6rem 0;
  border: none;
  outline: none;
  font-size: 1rem;
  width: 100%;
  line-height: 1;
  color: var(--text-dark, #222831);
}
.input-field:autofill, .input-field:-webkit-autofill, .input-field:-webkit-autofill:hover, .input-field:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
  box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: var(--text-dark, #222831) !important;
}

.checkbox-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  gap: 0.5rem;
}
.checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1.2rem;
  width: 1.2rem;
}
.checkbox-container input[type=checkbox].is-invalid + .checkmark {
  border-color: var(--error-color, #e74c3c);
}
.checkbox-container input[type=checkbox]:focus-visible + .checkmark {
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-light-30-rgb), 0.25);
}
.checkbox-container input[type=checkbox]:checked + .checkmark {
  background-color: var(--primary-color);
}
.checkbox-container input[type=checkbox]:checked + .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: relative;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}
.checkbox-container .checkbox-label {
  font-size: 0.9rem;
  line-height: 1;
}
.checkbox-container .checkbox-label a {
  font-size: 0.9rem;
}

.appointment-booking-stepper {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 0;
  max-width: 992px;
  width: 100%;
}
.appointment-booking-stepper .btn-primary,
.appointment-booking-stepper .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.appointment-booking-stepper .btn-primary:disabled,
.appointment-booking-stepper .btn-secondary:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.appointment-booking-stepper .btn-primary:focus-visible,
.appointment-booking-stepper .btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.25);
  outline-offset: 2px;
}
.appointment-booking-stepper .btn-secondary {
  border: 1px solid #d1d5db;
  background-color: var(--background, #fff);
  color: inherit;
}
.appointment-booking-stepper .btn-secondary:hover:not(:disabled) {
  border-color: #9ca3af;
  background-color: var(--accent, #f8f9fa);
  color: var(--accent-foreground, #212529);
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.button-container .btn {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 768px) {
  .button-container {
    margin-top: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white, #ffffff);
    padding: 1rem;
  }
}

.stepper-container {
  -webkit-overflow-scrolling: touch;
  gap: 0.5rem;
}

.step-wrapper {
  min-width: 4rem;
  text-align: center;
}

.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  background-color: var(--bg-gray, #e5e7eb);
  color: var(--secondary-color, #4b5563);
  flex-shrink: 0;
}
.step-circle .step-number {
  line-height: 1;
}
.step-circle.active, .step-circle.done {
  background-color: var(--primary-color);
  color: white;
}

.step-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--secondary-color, #4b5563);
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

@media (max-width: 576px) {
  .step-label {
    font-size: 0.65rem;
  }
  .step-circle {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.75rem;
  }
  .step-wrapper {
    min-width: 3.5rem;
  }
}
.booking-step {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.booking-step .booking-step-header-container {
  padding-top: 2rem;
}
.booking-step .booking-step-header-container .step-header {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .booking-step .booking-step-header-container {
    padding-top: 1rem;
  }
  .booking-step .booking-step-header-container .step-header {
    margin-bottom: 1rem;
  }
}
.booking-step .step-body {
  flex: 1 1 auto;
  scrollbar-gutter: stable;
  min-height: 300px;
}
.booking-step .step-title {
  font-size: 1.6rem;
}

.phone-number-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 6px;
  background-color: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
}
.phone-number-container:focus-within {
  border: 1px solid var(--primary-color-light-20);
}
.phone-number-container.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.phone-number-container.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.phone-number-container .country-select-wrapper .country-select {
  width: 100%;
  height: 100%;
  padding: 6px 8px;
  font-size: 0.875rem;
}
.phone-number-container .phone-number-field {
  border-left: 1px solid var(--border-color, #dee2e6);
  border-radius: 0 6px 6px 0;
}
.phone-number-container .phone-number-field .input-box {
  padding-left: 0;
}
.phone-number-container .selected-country {
  border-radius: 6px 0 0 6px !important;
  border: none !important;
}

.phone-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark, #222831);
  margin-bottom: 0.4rem;
}

.form-group-container {
  margin-bottom: 1rem;
}

.phone-number-field {
  flex: 1;
}
.phone-number-field .input-wrapper,
.phone-number-field .input-box,
.phone-number-field .input-field {
  min-width: 0;
}
.phone-number-field .input-box {
  border: none;
  box-shadow: none;
}
.phone-number-field .input-wrapper {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
}
.phone-number-field .input-field {
  width: 100%;
  flex: initial;
  padding: 0.6rem 8px 0.6rem 8px;
}
@media (max-width: 600px) {
  .phone-number-field .input-field {
    padding: 0.5rem 8px 0.5rem 8px;
    font-size: 0.9rem;
  }
}

.country-flag-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 15px;
  width: 20px;
}

.country-flag {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.country-select-combobox {
  position: relative;
  display: inline-block;
}
.country-select-combobox .selected-country {
  border: 1px solid var(--border-color, #dee2e6);
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.6rem;
  cursor: pointer;
  background-color: var(--bg-white, #ffffff);
  gap: 0.5rem;
  user-select: none;
}
.country-select-combobox .selected-country .dropdown-icon {
  margin-left: auto;
}
.country-select-combobox .selected-country:focus-visible {
  outline: none;
}
@media (max-width: 600px) {
  .country-select-combobox .selected-country {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
}
.country-select-combobox .country-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.country-select-combobox .country-dropdown:focus-visible {
  outline: none;
}
.country-select-combobox .country-dropdown .country-options {
  max-height: 300px;
  overflow-y: auto;
}
.country-select-combobox .country-dropdown .country-options .country-option {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  gap: 0.5rem;
  cursor: pointer;
}
.country-select-combobox .country-dropdown .country-options .country-option:hover {
  background-color: #f0f0f0;
}
.country-select-combobox .country-dropdown .country-options .country-option:focus-within {
  background-color: #e0e0e0;
}
.country-select-combobox .country-dropdown .country-options .country-option:focus-visible {
  outline: none;
}

.birthday-select-inline {
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}

.birthday-inline-option {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.birthday-inline-option select {
  padding: 0.6rem 0.4rem;
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  outline: none;
  width: 100%;
  color: #212529;
}
.birthday-inline-option select:has(option:checked:disabled) {
  color: #6c757d;
}
.birthday-inline-option select:focus-within {
  border-color: var(--primary-color-light-20);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-light-30-rgb), 0.25);
}

.otp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.otp-header {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color, #333);
  text-align: center;
}

.otp-inputs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.otp-inputs:focus {
  outline: none;
}

.otp-input {
  position: relative;
  z-index: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  text-align: center;
  border: 2px solid var(--border-color, #dee2e6);
  border-radius: 0.5rem;
  background-color: var(--bg-white, #ffffff);
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.otp-input:focus {
  border-color: var(--primary-color);
  transform: scale(1.05);
  outline: none;
}
.otp-input:focus::after {
  opacity: 1;
  transform: scale(1);
}

.appointment-card {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}
.appointment-card:hover {
  box-shadow: 0 8px 16px rgba(100, 150, 250, 0.15);
  transform: translateY(-2px);
}

.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  background-color: var(--bg-white, #ffffff);
  color: inherit;
  border: 1px solid rgb(209, 213, 219);
  flex: 1;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.btn-outline-secondary:hover {
  border-color: #9ca3af;
  background-color: var(--accent, #f8f9fa);
  color: var(--accent-foreground, #212529);
}
.btn-outline-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--text-light, #6b7280);
  outline-offset: 2px;
  background-color: var(--accent, #f8f9fa) !important;
}
.btn-outline-secondary:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-outline-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  background-color: var(--background, #fff);
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.btn-outline-danger:hover {
  color: #b91c1c;
  background-color: #fef2f2;
  border-color: #fca5a5;
}
.btn-outline-danger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring, #ef4444);
  outline-offset: 2px;
}
.btn-outline-danger:disabled {
  opacity: 0.5;
  pointer-events: none;
}

body:has(.modal-backdrop.show) {
  overflow: hidden;
}

.dialog-host {
  justify-content: center;
  align-items: center;
  z-index: 1100;
  width: 100%;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  padding: 2rem 0.5rem;
  display: none;
  height: 100%;
}
.dialog-host[data-state=open] {
  display: flex;
}
.dialog-host .login-container, .dialog-host .register-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dialog-content-wrapper {
  margin: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-container {
  background-color: var(--bg-white, #ffffff);
  border-radius: 0.4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 1.5rem;
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.dialog-host[data-state=open] .dialog-container {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: dialog-in 200ms ease-out;
}
@media (max-width: 500px) {
  .dialog-container {
    width: calc(100% - 1rem);
    padding: 1rem;
  }
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dialog-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0.5rem 0 0;
}
.dialog-header .close-dialog-button {
  color: #4B5563;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.dialog-header .close-dialog-button:hover {
  color: #111827;
}

.dialog-content {
  max-height: 60vh;
  overflow-y: auto;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.dialog-footer .dialog-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  background-color: var(--primary-color-light-10);
  color: var(--text-white, #ffffff);
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}
.dialog-footer .dialog-button:hover {
  background-color: var(--primary-color);
}
.dialog-footer .dialog-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-color-light-20), 0.5);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes dialog-out {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
}
.option-card {
  cursor: pointer;
  transition: all 150ms ease-in-out;
  outline: 2px solid transparent;
  outline-offset: 1px;
  border-radius: 1rem;
  padding: 0.5rem;
  position: relative;
}
.option-card.selected {
  box-shadow: 0 0 0 2px var(--primary-color);
}
.option-card.selected .selection-indicator {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color);
  color: white;
}
.option-card .option-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.option-card .option-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.option-card__image-container {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: var(--bg-gray, #e5e7eb);
}
.option-card__image-container .option-card-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.option-card__image-container .option-icon {
  font-size: 3rem;
}
@media screen and (max-width: 400px) {
  .option-card__image-container {
    width: 5rem;
    height: 5rem;
  }
}
.option-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
  min-width: 0;
}
.option-card__content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.option-card__content-header h3 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.25rem;
  padding-right: 2rem;
  margin: 0;
}
@media screen and (max-width: 400px) {
  .option-card__content-header h3 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .option-card__content-header h3 {
    font-size: 1rem;
  }
}
.option-card p {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: auto;
  padding-right: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.option-card__footer {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 0.25rem;
  gap: 0.5rem;
}
.option-card__footer__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.option-card__footer__tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  background-color: rgba(var(--primary-color-light-20-rgb), 0.5);
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.option-card__footer .option-card__footer__price {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 400px) {
  .option-card__footer .option-card__footer__price {
    font-size: 0.875rem;
  }
}

.selection-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.25rem;
  width: 1.25rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.selection-indicator.square {
  border-radius: 0.25rem;
}
.selection-indicator.circle {
  border-radius: 50%;
}

.badge-status {
  font-weight: 500;
  font-size: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.badge-status.completed {
  background-color: #dbeafe;
  color: #1e40af;
}
.badge-status.pending {
  background-color: #fef3c7;
  color: #92400e;
}
.badge-status.cancelled {
  background-color: #fee2e2;
  color: #b91c1c;
}

.my-appointment-card {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
  .appointment-buttons-container {
    width: 100%;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  color: var(--secondary-color, #4b5563);
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  border-radius: 0.375rem;
}
.nav-link:hover {
  color: var(--text-dark, #222831);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}

.main-nav {
  border-bottom: 2px solid var(--border-color, #dee2e6);
}
.main-nav a:has(.logo-container):focus-visible {
  outline: none;
  box-shadow: none;
}
.main-nav a:has(.logo-container):focus-visible .logo-container + span {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}

.custom-nav-link {
  color: var(--secondary-color, #4b5563);
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}
.custom-nav-link:hover, .custom-nav-link:focus {
  color: var(--text-dark, #222831);
  background-color: var(--bg-light, #f9fafb);
}

.btn-ghost-custom {
  background-color: transparent;
  border: none;
  color: var(--secondary-color, #4b5563);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-ghost-custom:hover, .btn-ghost-custom:focus {
  background-color: #e0e7ff;
  color: var(--primary-color);
  outline: none;
}
.btn-ghost-custom:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-ghost-sm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color, #4b5563);
  background: transparent;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-ghost-sm:hover {
  color: var(--text-dark, #222831);
}

.logout-button,
.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  height: 2.25rem;
  white-space: nowrap;
  color: var(--secondary-color, #4b5563);
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
}
.logout-button:hover,
.login-button:hover {
  background-color: var(--accent, #f3f4f6);
  color: var(--text-dark, #222831);
}
.logout-button:focus-visible,
.login-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}
.logout-button:disabled,
.login-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.burger {
  position: relative;
  width: 28px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  display: block;
}
.burger input {
  display: none;
}
.burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger span:nth-of-type(1) {
  top: 0;
  transform-origin: left center;
}
.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.burger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
  transform-origin: left center;
}
.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0;
  left: 3.5px;
}
.burger input:checked ~ span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 3.5px;
}

.logo-container {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-footer {
  background-color: var(--bg-dark, #1f2937);
  color: var(--text-white, #ffffff);
}
.primary-footer .footer-title {
  font-size: 1.125rem;
  font-weight: 500;
}
.primary-footer .footer-text {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--text-lighter, #9ca3af);
  margin-bottom: 0.5rem;
}
.primary-footer .footer-links li {
  margin-bottom: 0.5rem;
}
.primary-footer .footer-links li a {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-lighter, #9ca3af);
  text-decoration: none;
  transition: color 0.3s;
}
.primary-footer .footer-links li a:hover {
  color: var(--text-white, #ffffff);
  text-decoration: underline;
  cursor: pointer;
}
.primary-footer a {
  color: inherit;
  text-decoration: none;
}
.primary-footer a:hover {
  color: var(--text-white, #ffffff);
}
.primary-footer .text-muted {
  color: var(--text-lighter, #9ca3af) !important;
}

.secondary-footer {
  background-color: var(--bg-dark, #1f2937);
  color: var(--text-lighter, #9ca3af);
  text-align: center;
}
.secondary-footer a {
  font-size: 0.875rem;
  color: var(--text-lighter, #9ca3af);
  text-decoration: none;
  transition: color 0.3s;
}
.secondary-footer a:hover {
  color: var(--text-white, #ffffff);
}
.secondary-footer .text-muted {
  color: var(--text-lighter, #9ca3af) !important;
}
.secondary-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.secondary-footer .footer-links a {
  display: inline-block;
}

.toastHost {
  position: fixed;
  top: calc(64px + 1rem);
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}
.toastHost .toastItem {
  display: flex;
  align-items: center;
  max-width: 24rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  animation: slideInTop 0.5s ease forwards;
}
.toastHost .toastItem .toastMessage {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
}
.toastHost .toastItem .toastClose {
  background: none;
  border: none;
  margin-left: 0.75rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}
.toastHost .toastItem .toastClose:hover {
  opacity: 0.7;
}
.toastHost .toastItem .toastClose svg {
  width: 1rem;
  height: 1rem;
}
.toastHost .toastItem.success {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.toastHost .toastItem.error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.toastHost .toastItem.info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}
.toastHost .toastItem.warning {
  background-color: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-selection {
  display: flex;
  flex-direction: column;
}
.service-selection__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-gap: 1rem;
}
@media (max-width: 992px) {
  .service-selection__grid {
    grid-template-columns: 1fr;
  }
}
.service-selection__mobile-cart .next-step-button {
  display: none;
  margin-top: 0.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .service-selection__mobile-cart .next-step-button {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-white, #ffffff);
    padding: 1rem;
  }
  .service-selection__mobile-cart .next-step-button .btn {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .service-selection__mobile-cart .mobile-cart-button {
    bottom: 5.5rem;
  }
}
.service-selection__categories-service-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-selection__categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 1rem;
  justify-content: start;
  width: 100%;
}
.service-selection__categories-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.25rem;
  width: fit-content;
}
.service-selection__services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  width: 100%;
}
.service-selection__cart {
  width: 100%;
}

.service-cart {
  width: 100%;
}

.category-card {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color, #dee2e6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}
.category-card:hover, .category-card:focus {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.category-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}
.category-card .category-icon {
  font-size: 1.25rem;
  color: var(--text-light, #6b7280);
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.category-card .category-title {
  font-weight: 500;
  font-size: 0.875rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  color: var(--text-dark, #222831);
  margin: 0;
}
.category-card .category-content {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light, #6b7280);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.sticky-wrapper {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media (max-width: 768px) {
  .sticky-wrapper {
    display: none;
  }
}

.category-card-back {
  background: var(--bg-gray, #e5e7eb) !important;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color, #dee2e6);
  color: var(--text-dark, #222831);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.service-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.service-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20);
  outline-offset: 2px;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
}
.service-card__content {
  flex-grow: 1;
}
.service-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}
.service-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark, #222831);
  margin: 0 0.5rem 0 0;
}
.service-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}
.service-card__duration {
  font-size: 0.875rem;
  color: var(--secondary-color, #4b5563);
}
.service-card__options {
  font-size: 0.875rem;
  color: var(--secondary-color, #4b5563);
  padding-top: 1rem;
  border-top: 1px solid var(--border-color-light, #f3f4f6);
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
.service-card__options svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}
@media (max-width: 768px) {
  .service-card {
    font-size: 0.875rem;
  }
  .service-card__body {
    padding: 1rem;
  }
  .service-card__title {
    font-size: 1rem;
  }
  .service-card__description {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .service-card__description p {
    font-size: 0.75rem;
  }
  .service-card__price {
    font-size: 1.25rem;
  }
  .service-card__duration {
    font-size: 0.75rem;
  }
  .service-card__options {
    font-size: 0.75rem;
    padding-top: 0.75rem;
  }
  .service-card__price-row {
    gap: 0.25rem;
  }
  .service-card__footer {
    gap: 0.5rem;
  }
}

.selected-articles {
  margin: 0;
  padding: 0;
}

.selected-article {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-color-light, #f3f4f6);
}

.selected-article:last-child {
  border-bottom: none;
}

.cart-item .btn:hover {
  background-color: #f4f4f5;
}
.cart-item .btn:focus-visible {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.mobile-cart-button {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cart-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white, #ffffff);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
  }
  .mobile-cart-button .badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-cart-button:hover {
    background-color: var(--primary-color);
  }
}

.animate-pop {
  animation: pop 0.3s ease-in-out;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.profitCenter-selection-page {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profitCenter-selection-page .container {
  max-width: 720px;
  margin: auto;
}
.profitCenter-selection-page .title {
  font-size: 2rem;
  font-weight: 500;
  color: #111827;
}
.profitCenter-selection-page .subtitle {
  color: #6b7280;
  font-size: 1rem;
}
.profitCenter-selection-page .profitCenter-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profitCenter-selection-page .profitCenter-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid #e5e7eb;
  position: relative;
}
.profitCenter-selection-page .profitCenter-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.profitCenter-selection-page .profitCenter-card.selected {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-width: 2px;
}
.profitCenter-selection-page .profitCenter-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.profitCenter-selection-page .profitCenter-logo {
  position: relative;
  flex-shrink: 0;
}
.profitCenter-selection-page .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
}
.profitCenter-selection-page .profitCenter-info {
  flex: 1;
}
.profitCenter-selection-page .profitCenter-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
}
.profitCenter-selection-page .profitCenter-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.profitCenter-selection-page .profitCenter-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.profitCenter-selection-page .selection-indicator {
  flex-shrink: 0;
}
.profitCenter-selection-page .selection-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.profitCenter-selection-page .indicator {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.profitCenter-selection-page .selected-indicator {
  border-color: inherit;
  background-color: inherit;
}
.profitCenter-selection-page .btn-continue {
  background-color: #9CA3AF;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  min-width: 12rem;
  transition: background-color 0.2s;
}
.profitCenter-selection-page .btn-continue:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}
.profitCenter-selection-page .btn-continue:active {
  color: white;
}
.profitCenter-selection-page .footer-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.combobox {
  position: relative;
  display: flex;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
}
.combobox:focus-within {
  border-color: var(--primary-color-light-20);
}
.combobox.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.combobox.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.combobox .selected-item {
  display: flex;
  align-items: center;
  padding: 0.6rem;
  cursor: pointer;
  background-color: var(--bg-white, #ffffff);
  gap: 0.5rem;
  user-select: none;
  border-radius: 6px;
  justify-content: space-between;
  flex: 1;
}
.combobox .selected-item:focus-visible {
  outline: none;
}
.combobox .selected-item .dropdown-icon {
  margin-left: auto;
}
.combobox .selected-item-placeholder {
  color: var(--text-light, #6b7280);
}
@media (max-width: 600px) {
  .combobox .selected-item {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.combobox .dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  max-height: 300px;
  overflow: hidden;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
  min-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.combobox .dropdown:focus-visible {
  outline: none;
}
.combobox .dropdown .dropdown-options {
  max-height: 300px;
  overflow-y: auto;
}
.combobox .dropdown .dropdown-options .dropdown-option {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  gap: 0.5rem;
  cursor: pointer;
}
.combobox .dropdown .dropdown-options .dropdown-option:hover {
  background-color: #f0f0f0;
}
.combobox .dropdown .dropdown-options .dropdown-option:focus-within {
  background-color: #e0e0e0;
}
.combobox .dropdown .dropdown-options .dropdown-option:focus-visible {
  outline: none;
}
.combobox .dropdown .dropdown-options .dropdown-option.selected {
  background-color: var(--primary-color);
  color: var(--text-white, #ffffff);
}

/* Variable fonts usage:
:root { font-family: "Inter", sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: "InterVariable", sans-serif; font-optical-sizing: auto; }
} */
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable-Italic.woff2") format("woff2");
}
/* static fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/Inter-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/Inter-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/Inter-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/Inter-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Inter-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/Inter-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/Inter-BlackItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/InterDisplay-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/InterDisplay-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/InterDisplay-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Light.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/InterDisplay-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/InterDisplay-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/InterDisplay-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/InterDisplay-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/InterDisplay-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/InterDisplay-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/InterDisplay-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/InterDisplay-Black.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/InterDisplay-BlackItalic.woff2") format("woff2");
}
@font-feature-values InterVariable {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1; /* Alternate one */
    alt-3: 9; /* Flat-top three */
    open-4: 2; /* Open four */
    open-6: 3; /* Open six */
    open-9: 4; /* Open nine */
    lc-l-with-tail: 5; /* Lower-case L with tail */
    simplified-u: 6; /* Simplified u */
    alt-double-s: 7; /* Alternate German double s */
    uc-i-with-serif: 8; /* Upper-case i with serif */
    uc-g-with-spur: 10; /* Capital G with spur */
    single-story-a: 11; /* Single-story a */
    compact-lc-f: 12; /* Compact f */
    compact-lc-t: 13; /* Compact t */
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1; /* Open digits */
    disambiguation: 2; /* Disambiguation (with zero) */
    disambiguation-except-zero: 4; /* Disambiguation (no zero) */
    round-quotes-and-commas: 3; /* Round quotes &amp; commas */
    square-punctuation: 7; /* Square punctuation */
    square-quotes: 8; /* Square quotes */
    circled-characters: 5; /* Circled characters */
    squared-characters: 6; /* Squared characters */
  }
}
@font-feature-values Inter {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1; /* Alternate one */
    alt-3: 9; /* Flat-top three */
    open-4: 2; /* Open four */
    open-6: 3; /* Open six */
    open-9: 4; /* Open nine */
    lc-l-with-tail: 5; /* Lower-case L with tail */
    simplified-u: 6; /* Simplified u */
    alt-double-s: 7; /* Alternate German double s */
    uc-i-with-serif: 8; /* Upper-case i with serif */
    uc-g-with-spur: 10; /* Capital G with spur */
    single-story-a: 11; /* Single-story a */
    compact-lc-f: 12; /* Compact f */
    compact-lc-t: 13; /* Compact t */
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1; /* Open digits */
    disambiguation: 2; /* Disambiguation (with zero) */
    disambiguation-except-zero: 4; /* Disambiguation (no zero) */
    round-quotes-and-commas: 3; /* Round quotes &amp; commas */
    square-punctuation: 7; /* Square punctuation */
    square-quotes: 8; /* Square quotes */
    circled-characters: 5; /* Circled characters */
    squared-characters: 6; /* Squared characters */
  }
}
@font-feature-values InterDisplay {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1; /* Alternate one */
    alt-3: 9; /* Flat-top three */
    open-4: 2; /* Open four */
    open-6: 3; /* Open six */
    open-9: 4; /* Open nine */
    lc-l-with-tail: 5; /* Lower-case L with tail */
    simplified-u: 6; /* Simplified u */
    alt-double-s: 7; /* Alternate German double s */
    uc-i-with-serif: 8; /* Upper-case i with serif */
    uc-g-with-spur: 10; /* Capital G with spur */
    single-story-a: 11; /* Single-story a */
    compact-lc-f: 12; /* Compact f */
    compact-lc-t: 13; /* Compact t */
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1; /* Open digits */
    disambiguation: 2; /* Disambiguation (with zero) */
    disambiguation-except-zero: 4; /* Disambiguation (no zero) */
    round-quotes-and-commas: 3; /* Round quotes &amp; commas */
    square-punctuation: 7; /* Square punctuation */
    square-quotes: 8; /* Square quotes */
    circled-characters: 5; /* Circled characters */
    squared-characters: 6; /* Squared characters */
  }
}
.reschedule-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark, #222831);
}

.employee-picker {
  margin-bottom: 1rem;
}
.employee-picker__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark, #222831);
}
.employee-picker__list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 0.5rem 1rem;
  flex-wrap: wrap;
}

.employee {
  min-width: 70px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.employee:hover .employee__avatar {
  border-color: var(--primary-color);
}
.employee:hover img {
  filter: grayscale(0);
}
.employee--selected .employee__avatar {
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.employee--selected .employee__avatar img {
  filter: grayscale(0);
}
.employee--default .employee__avatar {
  background: var(--bg-light, #f9fafb);
}
.employee__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 2px;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employee__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}
.employee__avatar--placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: var(--text-color, #333);
  background-color: var(--bg-gray, #e5e7eb);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employee__check {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-white, #ffffff);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-white, #ffffff);
}
.employee__meta {
  margin-top: 0.25rem;
}
.employee__name {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark, #222831);
}
.employee__name--active {
  color: var(--primary-color);
  font-weight: 700;
}
.employee__price {
  display: block;
  font-size: 0.625rem;
  margin-top: 0.125rem;
  color: var(--text-lighter, #9ca3af);
}
.employee__price--active {
  color: var(--primary-color);
  font-weight: 700;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-md {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color, #4b5563) !important;
}

.line-through {
  text-decoration: line-through;
}

.cursorPointer {
  cursor: pointer;
}

.glowing-icon {
  background-color: rgba(var(--primary-color-light-20-rgb), 0.2);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-light, #f9fafb);
}

.publicApp {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
@media (max-width: 768px) {
  .publicApp:has(.appointment-booking-stepper) .primary-footer {
    padding-bottom: 4rem;
  }
}

.main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.main-content a {
  text-decoration: none;
  color: var(--primary-color);
}
.main-content a:hover {
  text-decoration: underline;
}

.header-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.4rem;
}
.header-image-container .header-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .header-image-container .header-img {
    height: 140px;
  }
  .header-image-container {
    border-radius: 0;
  }
}
.header-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.header-image-container-text {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description-container {
  font-size: 0.875rem;
  color: var(--secondary-color, #4b5563);
  margin-bottom: 1rem;
}
.service-description-container p {
  margin: 0;
}
.service-description-container .service-description {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  hyphens: auto;
  text-align: justify;
}
@media (max-width: 576px) {
  .service-description-container {
    font-size: 0.75rem;
  }
}

.toggle-description {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  padding: 0;
}
.toggle-description:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .toggle-description {
    font-size: 0.75rem;
  }
}

.employee-info .avatar-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}
.employee-info .avatar-wrapper .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-container .initials-avatar {
  font-size: 1.8rem;
}
.avatar-container .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.employee-details {
  flex-grow: 1;
}

.booking-overview-content {
  max-width: 752px;
}

.booking-steps-container {
  min-height: 0;
}

.employee-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .employee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .employee-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.no-employees-message {
  text-align: center;
  color: var(--text-light, #6b7280);
  font-size: 1rem;
  margin-top: 2rem;
}
.no-employees-message a {
  color: var(--primary-color);
}
.no-employees-message a:hover {
  text-decoration: none;
}

.card-profile {
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.card-profile.selected {
  box-shadow: 0 0 0 2px var(--primary-color);
  position: relative;
}
.card-profile:not(.card-profile.selected):hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.card-profile .icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-profile .icon-wrapper .employee-icon {
  font-size: 56px;
  color: var(--text-color, #333);
}
.card-profile .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.card-profile .object-fit-cover {
  object-fit: cover;
}
.card-profile .badge-check {
  width: 2rem;
  height: 2rem;
  top: 0.8rem;
  right: 0.8rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.15s ease-out forwards;
}
.card-profile .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.card-profile .icon-sm {
  width: 1rem;
  height: 1rem;
}

.close-dialog-btn {
  color: var(--text-light, #6b7280);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.close-dialog-btn:hover {
  color: var(--text-dark, #222831);
}

.dialog-footer .custom-button {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dialog-footer .custom-button.small {
  width: 100%;
}
.dialog-footer .custom-button.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--text-white, #ffffff);
}
.dialog-footer .custom-button.btn-primary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9) !important;
}
.dialog-footer .custom-button.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem var(--primary-color-light-40);
}
.dialog-footer .custom-button.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.dialog-footer .custom-button.btn-secondary:hover {
  background-color: #e5e7eb;
}
.dialog-footer .custom-button.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(209, 213, 219, 0.5);
}

.custom-loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  margin: 50px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content-box {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.employee-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  outline: none;
  border-radius: calc(0.5rem - 2px);
  border: none;
}
.custom-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
.custom-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.custom-button.large {
  height: 2.75rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  line-height: 1rem;
}
.custom-button.small {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--text-white, #ffffff) !important;
  border-color: var(--primary-color) !important;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem var(--primary-color-light-40);
  outline: none;
}
.btn-primary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9) !important;
}

.btn-secondary {
  background-color: var(--background, #fff);
  color: inherit;
  border: 1px solid #d1d5db;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  border-color: #9ca3af;
  background-color: var(--accent, #f8f9fa);
  color: var(--accent-foreground, #212529);
}
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-40);
  outline-offset: 2px;
}
.btn-secondary:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  outline: none;
}
.dropdown .btn-custom {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}
.dropdown .btn-custom:hover {
  background-color: #f9fafb;
}
.dropdown .btn-custom:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20), 0 0 0 4px #f3f4f6;
}

.password-visibility-btn {
  color: var(--primary-color);
}
.password-visibility-btn:active {
  color: var(--primary-color-light-20) !important;
}
.password-visibility-btn:hover {
  color: var(--primary-color-light-10);
}
.password-visibility-btn:focus-visible {
  color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20), 0 0 0 4px rgba(243, 244, 246, 0.5);
}
.password-visibility-btn i {
  height: 16px;
  width: 18px;
}

.booking-header {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .booking-header {
    margin-bottom: 1rem;
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=app.css.map */
