/**
 * importer.less
 *
 * By default, new Sails projects are configured to compile this file
 * from LESS to CSS.  Unlike CSS files, LESS files are not compiled and
 * included automatically unless they are imported below.
 *
 * For more information see:
 *   https://sailsjs.com/anatomy/assets/styles/importer-less
 */
/**
 * Color Variables
 */
/**
 * This file is for overriding some default bootstrap styles.
 *
 * > NOTE THAT THIS FILE AFFECTS GLOBAL STYLES.
 */
* {
  box-sizing: border-box;
}
img {
  display: block;
}
.btn,
[type='button'] {
  -webkit-appearance: none;
}
h1 > a:not(.btn),
h2 > a:not(.btn),
h3 > a:not(.btn),
h4 > a:not(.btn),
h5 > a:not(.btn),
h6 > a:not(.btn),
p > a:not(.btn),
li > a:not(.btn),
blockquote > a:not(.btn),
label > a:not(.btn),
h1 small > a:not(.btn),
h2 small > a:not(.btn),
h3 small > a:not(.btn),
h4 small > a:not(.btn),
h5 small > a:not(.btn),
h6 small > a:not(.btn),
p small > a:not(.btn),
li small > a:not(.btn),
blockquote small > a:not(.btn),
label small > a:not(.btn) {
  color: #14acc2;
  border-bottom: 1px solid #000;
}
h1 > a:not(.btn):hover,
h2 > a:not(.btn):hover,
h3 > a:not(.btn):hover,
h4 > a:not(.btn):hover,
h5 > a:not(.btn):hover,
h6 > a:not(.btn):hover,
p > a:not(.btn):hover,
li > a:not(.btn):hover,
blockquote > a:not(.btn):hover,
label > a:not(.btn):hover,
h1 small > a:not(.btn):hover,
h2 small > a:not(.btn):hover,
h3 small > a:not(.btn):hover,
h4 small > a:not(.btn):hover,
h5 small > a:not(.btn):hover,
h6 small > a:not(.btn):hover,
p small > a:not(.btn):hover,
li small > a:not(.btn):hover,
blockquote small > a:not(.btn):hover,
label small > a:not(.btn):hover {
  text-decoration: none;
  color: #000;
}
blockquote {
  border-left: 3px solid #e4e4e4;
  padding-left: 20px;
}
[v-cloak] {
  display: none;
}
html,
body {
  height: 100%;
  margin: 0;
}
[purpose='page-wrap'] {
  height: 100%;
  /* lesshint-disable */
  height: auto !important;
  /* lesshint-enable */
  min-height: 100%;
  position: relative;
}
[purpose='page-header'] {
  background: linear-gradient(to right, #2c3e50, #3498db);
  padding: 0 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.navbar-brand span {
  color: #f1c40f;
}
.aura-container {
  position: relative;
  height: calc(100vh - 52px);
  min-height: calc(100vh - 52px);
  max-height: calc(100vh - 52px);
  overflow-x: hidden;
}
.aura-container.shifted {
  padding-left: 270px;
}
.main-container {
  overflow-y: auto;
  height: calc(100vh - 52px);
  max-height: calc(100vh - 52px);
}
.sidepanel {
  height: calc(100vh - 52px);
  width: 250px;
  position: absolute;
  z-index: 1030;
  top: 0;
  left: -250px;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  overflow-x: hidden;
  padding-top: 60px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  display: none;
}
.sidepanel .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.sidepanel .close-btn:hover {
  color: #f1c40f;
}
.sidepanel .nav-link {
  padding: 12px 25px;
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
  border-left: 3px solid transparent;
  white-space: nowrap;
}
.sidepanel .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #f1c40f;
  color: #f1c40f;
  text-decoration: none;
}
.sidepanel .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: #f1c40f;
}
.toggle-sidepanel {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e50;
  background: transparent;
  border: none;
  padding: 5px;
  line-height: 1;
  user-select: none;
  z-index: 1029;
  transition: all 0.3s ease-in-out;
  display: none;
}
.toggle-sidepanel:hover {
  color: #3498db;
}
.sidepanel.open {
  left: 0;
  display: block !important;
}
.toggle-sidepanel.sidepanel-closed {
  display: block !important;
}
@media (max-width: 575px) {
  .aura-container.shifted {
    padding-left: 20px;
  }
  .toggle-sidepanel {
    top: 20px;
  }
  .sidepanel {
    width: 100%;
    left: -100%;
  }
}
.btn-warning {
  background-color: #f1c40f;
  border-color: #f1c40f;
  color: #2c3e50;
  padding: 8px 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.btn-warning:hover {
  background-color: #c29d0b;
  border-color: #c29d0b;
  color: #2c3e50;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.text-warning {
  color: #f1c40f !important;
}
.text-warning:hover {
  color: #c29d0b !important;
}
/**
 * <stripe-card-element>
 */
[parasails-component='stripe-card-element'] .card-element-wrapper {
  position: relative;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .card-element {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .card-element.pseudofocused {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator {
  font-size: 15px;
  position: absolute;
  right: 14px;
  top: 8px;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator.hidden {
  display: none;
}
[parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator.syncing {
  -webkit-animation: fa-spinner-rotate 1.5s infinite linear;
  animation: fa-spinner-rotate 1.5s infinite linear;
}
@-webkit-keyframes fa-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-clockwise {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
[parasails-component='stripe-card-element'] .card-element-wrapper.secret-card-element-wrapper {
  opacity: 0;
  height: 1px;
}
@media screen and (max-width: 450px) {
  [parasails-component='stripe-card-element'] .card-element-wrapper .card-element {
    padding-right: 20px;
  }
  [parasails-component='stripe-card-element'] .card-element-wrapper .status-indicator {
    right: 9px;
  }
}
/**
 * <ajax-button>
 *
 * App-wide styles for our ajax buttons.
 */
[parasails-component='ajax-button'] .button-loader,
[parasails-component='ajax-button'] .button-loading {
  display: none;
  margin: auto;
}
[parasails-component='ajax-button'] .button-loader .loading-dot,
[parasails-component='ajax-button'] .button-loading .loading-dot {
  opacity: 0;
  display: inline;
  -moz-animation-name: fade-in;
  -webkit-animation-name: fade-in;
  -ms-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-animation-direction: linear;
  -ms-animation-direction: linear;
  -o-animation-direction: linear;
  animation-direction: linear;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot1,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot1 {
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot2,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot2 {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot3,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot3 {
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot4,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot4 {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
[parasails-component='ajax-button'].syncing .button-loader,
[parasails-component='ajax-button'].syncing .button-loading {
  display: inline-block;
}
[parasails-component='ajax-button'].syncing .button-text {
  display: none;
}
/**
 * <modal>
 *
 * App-wide styles for our modals.
 */
[parasails-component='modal'] {
  -webkit-overflow-scrolling: touch;
}
[parasails-component='modal'] [purpose='modal-dialog'] {
  z-index: 100;
  position: relative;
  max-width: 700px;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] {
  max-width: 700px;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button'] {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.6;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:focus {
  border-image: none;
  outline: none;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:hover {
  opacity: 1;
}
[parasails-component='modal'] .petticoat {
  position: fixed;
  width: 100%;
  height: 75px;
  z-index: 50;
  left: 0px;
  top: 0px;
  background-color: #fff;
}
[parasails-component='modal'] .modal-content {
  border-radius: 0px;
  border-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
}
[parasails-component='modal'] .modal-content .modal-header {
  border-bottom: none;
  display: block;
  position: relative;
  text-align: center;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}
[parasails-component='modal'] .modal-content .modal-header .modal-title {
  font-weight: 700;
}
[parasails-component='modal'] .modal-content .modal-header .modal-intro {
  margin-left: auto;
  margin-right: auto;
  color: #999999;
  margin-bottom: 20px;
}
[parasails-component='modal'] .modal-content .modal-header hr {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 100px;
  height: 2px;
  border-top: 2px solid #14acc2;
}
[parasails-component='modal'] .modal-content .modal-body {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
}
[parasails-component='modal'] .modal-content .modal-footer {
  padding-top: 25px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 10px;
}
.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.show {
  opacity: 0.95;
}
/**
 * <cloud-error>
 *
 * App-wide styles for our cloud-errors.
 */
#homepage .hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #14acc2 0%, #0d7a8a 100%);
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
}
#homepage .hero-section h1 {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
#homepage .hero-section h1 .brand-name {
  font-family: 'Montserrat', sans-serif;
  background: #f1c40f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
#homepage .hero-section h1 .brand-number {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  margin-left: 0.2rem;
}
#homepage .hero-section h1 .subtitle {
  display: block;
  font-size: 2.5rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  font-weight: 400;
}
#homepage .hero-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}
#homepage .hero-section .cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#homepage .hero-section .btn {
  min-width: 180px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 8px;
}
#homepage .hero-section .btn-primary {
  background: white;
  color: #14acc2;
  border: none;
  transition: all 0.3s ease;
}
#homepage .hero-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
#homepage .hero-section .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
#homepage .hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
#homepage .hero-section .features-preview {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
#homepage .hero-section .features-preview .feature-item {
  text-align: center;
  flex: 1;
}
#homepage .hero-section .features-preview .feature-item .feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
#homepage .hero-section .features-preview .feature-item .feature-text {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}
#homepage .hero-section .hero-image-container img {
  max-width: 100%;
  height: auto;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
#homepage .hero-section .hero-image-container .chat-bubble {
  position: absolute;
  top: -60px;
  left: 20px;
  background: white;
  color: #333;
  padding: 15px 25px;
  border-radius: 20px;
  font-size: 1rem;
  max-width: 80%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#homepage .hero-section .hero-image-container .chat-bubble:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
#homepage .features-section {
  background: #f8f9fa;
  padding: 80px 0;
}
#homepage .features-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3rem;
}
#homepage .features-section h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #14acc2;
  margin: 1rem auto 0;
  border-radius: 2px;
}
#homepage .features-section .feature-card {
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#homepage .features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
#homepage .features-section .feature-card:hover .feature-icon-lg {
  transform: scale(1.1);
}
#homepage .features-section .feature-card .feature-icon-lg {
  width: 48px;
  height: 48px;
  color: #14acc2;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
#homepage .features-section .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}
#homepage .features-section .feature-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
}
#homepage .cta-section {
  background: linear-gradient(135deg, #14acc2 0%, #0d7a8a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
#homepage .cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.svg') center / cover;
  opacity: 0.05;
  pointer-events: none;
}
#homepage .cta-section .cta-wrapper {
  position: relative;
  padding: 4rem 0;
}
#homepage .cta-section .stats-row .stat-item {
  padding: 1.5rem;
}
#homepage .cta-section .stats-row .stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#homepage .cta-section .stats-row .stat-item .stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}
#homepage .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
#homepage .cta-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
}
#homepage .cta-section .btn-primary {
  background: white;
  color: #14acc2;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 200px;
}
#homepage .cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}
#homepage .footer-section {
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#homepage .footer-section .footer-brand {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#homepage .footer-section .footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  color: #f1c40f;
  font-weight: 800;
}
#homepage .footer-section .footer-brand .brand-number {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  font-weight: 800;
  margin-left: 0.2rem;
}
#homepage .footer-section .footer-description {
  color: #666;
  margin-bottom: 2rem;
}
#homepage .footer-section .footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}
#homepage .footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
#homepage .footer-section .footer-links li {
  margin-bottom: 1rem;
}
#homepage .footer-section .footer-links li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
#homepage .footer-section .footer-links li a:hover {
  color: #14acc2;
}
#homepage .footer-section .footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
#homepage .footer-section .footer-bottom .copyright {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}
@media (max-width: 991px) {
  #homepage .hero-section {
    text-align: center;
    padding: 60px 0;
  }
  #homepage .hero-section h1 {
    font-size: 2.5rem;
  }
  #homepage .hero-section .cta-buttons {
    justify-content: center;
  }
  #homepage .hero-section .features-preview {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  #homepage .hero-section .features-preview .feature-item {
    flex: 0 0 auto;
    width: calc(31.83%);
    min-width: 120px;
  }
  #homepage .hero-section .hero-image-container {
    margin-top: 60px;
  }
  #homepage .hero-section .hero-image-container .chat-bubble {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    display: inline-block;
  }
  #homepage .hero-section .hero-image-container .chat-bubble:after {
    left: 50%;
    transform: translateX(-50%);
  }
  #homepage .features-section h2 {
    font-size: 2rem;
  }
  #homepage .cta-section .stats-row .stat-item {
    padding: 1rem;
  }
  #homepage .cta-section .stats-row .stat-item .stat-number {
    font-size: 2.5rem;
  }
  #homepage .cta-section .stats-row .stat-item .stat-label {
    font-size: 1rem;
  }
  #homepage .cta-section h2 {
    font-size: 2rem;
  }
  #homepage .cta-section .lead {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  #homepage .hero-section .btn {
    width: 100%;
    margin-right: 0 !important;
  }
  #homepage .hero-section .features-preview .feature-item {
    width: calc(49%);
  }
  #homepage .cta-section .stats-row .row {
    gap: 1rem;
  }
  #homepage .cta-section .stats-row .stat-item .stat-number {
    font-size: 2rem;
  }
  #homepage .cta-section .cta-wrapper {
    padding: 3rem 0;
  }
  #homepage .cta-section .btn-primary {
    width: 100%;
    margin: 0 1rem;
  }
}
#homepage [purpose='cloud-1'] {
  -moz-animation-name: flyfade;
  -webkit-animation-name: flyfade;
  -ms-animation-name: flyfade;
  -o-animation-name: flyfade;
  animation-name: flyfade;
  -moz-animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -ms-animation-duration: 7s;
  -o-animation-duration: 7s;
  animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  opacity: 0;
}
@-webkit-keyframes flyfade {
  0% {
    -webkit-transform: translate(0px, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(110px, 0px);
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-moz-keyframes flyfade {
  0% {
    -moz-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -moz-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-o-keyframes flyfade {
  0% {
    -o-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -o-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -o-transform: translate(220px, 0);
    opacity: 0;
  }
}
@keyframes flyfade {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(220px, 0);
    opacity: 0;
  }
}
#homepage [purpose='cloud-2'] {
  -moz-animation-name: flyfade;
  -webkit-animation-name: flyfade;
  -ms-animation-name: flyfade;
  -o-animation-name: flyfade;
  animation-name: flyfade;
  -moz-animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -ms-animation-duration: 7s;
  -o-animation-duration: 7s;
  animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -moz-animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
  -ms-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s;
  opacity: 0;
}
@-webkit-keyframes flyfade {
  0% {
    -webkit-transform: translate(0px, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(110px, 0px);
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-moz-keyframes flyfade {
  0% {
    -moz-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -moz-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(220px, 0);
    opacity: 0;
  }
}
@-o-keyframes flyfade {
  0% {
    -o-transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    -o-transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -o-transform: translate(220px, 0);
    opacity: 0;
  }
}
@keyframes flyfade {
  0% {
    transform: translate(0, 0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(110px, 0px);
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(220px, 0);
    opacity: 0;
  }
}
#homepage [purpose='ship'] {
  -moz-animation-name: skid;
  -webkit-animation-name: skid;
  -ms-animation-name: skid;
  -o-animation-name: skid;
  animation-name: skid;
  -moz-animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  -ms-animation-duration: 2.5s;
  -o-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes skid {
  0% {
    -webkit-transform: translate(0px, 0px);
  }
  10% {
    -webkit-transform: translate(-1px, -1px);
  }
  20% {
    -webkit-transform: translate(-2px, -2px);
  }
  30% {
    -webkit-transform: translate(-3px, -2px);
  }
  40% {
    -webkit-transform: translate(-4px, -1px);
  }
  50% {
    -webkit-transform: translate(-5px, 0px);
  }
  60% {
    -webkit-transform: translate(-4px, 1px);
  }
  70% {
    -webkit-transform: translate(-3px, 2px);
  }
  80% {
    -webkit-transform: translate(-2px, 2px);
  }
  90% {
    -webkit-transform: translate(-1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
  }
}
@-moz-keyframes skid {
  0% {
    -moz-transform: translate(0px, 0px);
  }
  10% {
    -moz-transform: translate(-1px, -1px);
  }
  20% {
    -moz-transform: translate(-2px, -2px);
  }
  30% {
    -moz-transform: translate(-3px, -2px);
  }
  40% {
    -moz-transform: translate(-4px, -1px);
  }
  50% {
    -moz-transform: translate(-5px, 0px);
  }
  60% {
    -moz-transform: translate(-4px, 1px);
  }
  70% {
    -moz-transform: translate(-3px, 2px);
  }
  80% {
    -moz-transform: translate(-2px, 2px);
  }
  90% {
    -moz-transform: translate(-1px, 1px);
  }
  100% {
    -moz-transform: translate(0, 0px);
  }
}
@-o-keyframes skid {
  0% {
    -o-transform: translate(0px, 0px);
  }
  10% {
    -o-transform: translate(-1px, -1px);
  }
  20% {
    -o-transform: translate(-2px, -2px);
  }
  30% {
    -o-transform: translate(-3px, -2px);
  }
  40% {
    -o-transform: translate(-4px, -1px);
  }
  50% {
    -o-transform: translate(-5px, 0px);
  }
  60% {
    -o-transform: translate(-4px, 1px);
  }
  70% {
    -o-transform: translate(-3px, 2px);
  }
  80% {
    -o-transform: translate(-2px, 2px);
  }
  90% {
    -o-transform: translate(-1px, 1px);
  }
  100% {
    -o-transform: translate(0, 0px);
  }
}
@keyframes skid {
  0% {
    transform: translate(0px, 0px);
  }
  10% {
    transform: translate(-1px, -1px);
  }
  20% {
    transform: translate(-2px, -2px);
  }
  30% {
    transform: translate(-3px, -2px);
  }
  40% {
    transform: translate(-4px, -1px);
  }
  50% {
    transform: translate(-5px, 0px);
  }
  60% {
    transform: translate(-4px, 1px);
  }
  70% {
    transform: translate(-3px, 2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
  90% {
    transform: translate(-1px, 1px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
#homepage [purpose='more-info-text'] {
  -moz-animation-name: bob;
  -webkit-animation-name: bob;
  -ms-animation-name: bob;
  -o-animation-name: bob;
  animation-name: bob;
  -moz-animation-duration: 3.2s;
  -webkit-animation-duration: 3.2s;
  -ms-animation-duration: 3.2s;
  -o-animation-duration: 3.2s;
  animation-duration: 3.2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bob {
  0% {
    -webkit-transform: translate(0px);
  }
  50% {
    -webkit-transform: translatey(-7px);
  }
  100% {
    -webkit-transform: translatey(0px);
  }
}
@-moz-keyframes bob {
  0% {
    -moz-transform: translatey(0px);
  }
  50% {
    -moz-transform: translatey(-7px);
  }
  100% {
    -moz-transform: translatey(0px);
  }
}
@-o-keyframes bob {
  0% {
    -o-transform: translatey(0px);
  }
  50% {
    -o-transform: translatey(-7px);
  }
  100% {
    -o-transform: translatey(0px);
  }
}
@keyframes bob {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-7px);
  }
  100% {
    transform: translatey(0px);
  }
}
#homepage [purpose='setup-step'] {
  padding-left: 240px;
}
@media (max-width: 991px) {
  #homepage [purpose='setup-step'] {
    padding-left: 0px;
  }
}
#welcome h1 {
  font-size: 1.5rem;
}
#welcome .date-filter {
  font-size: 1rem;
  color: #64748b;
}
#welcome .date-filter .current-time {
  font-family: monospace;
  font-weight: 500;
  color: #2c3e50;
  min-width: 5.5rem;
  text-align: center;
}
#welcome .metric-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 150px;
}
#welcome .metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#welcome .metric-card .card-body {
  padding: 1.5rem;
}
#welcome .metric-card h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-right: 0.5rem;
}
#welcome .metric-card .badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#welcome .metric-card .badge .trend-icon {
  margin-right: 0.25rem;
}
#welcome .metric-card .badge.badge-success {
  background-color: #e3fcef;
  color: #0c9d58;
}
#welcome .metric-card .badge.badge-danger {
  background-color: #fee2e2;
  color: #dc2626;
}
#welcome .channel-metrics {
  height: calc(100vh - 200px);
  max-height: calc(100vh - 200px);
}
#welcome .channel-metrics .channel-metric-item {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
#welcome .channel-metrics .channel-metric-item:hover {
  background: #f1f5f9;
}
#welcome .channel-metrics .channel-metric-item .channel-icon {
  width: 1.5rem;
  height: 1.5rem;
}
#welcome .channel-metrics .channel-metric-item .channel-icon.ai-icon {
  color: #6366f1;
}
#welcome .channel-metrics .channel-metric-item .channel-icon.whatsapp-icon {
  color: #25d366;
}
#welcome .channel-metrics .channel-metric-item h3 {
  color: #2c3e50;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#welcome .channel-metrics .channel-metric-item .progress {
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #e2e8f0;
  overflow: hidden;
}
#welcome .channel-metrics .channel-metric-item .progress .progress-bar {
  transition: width 0.3s ease;
}
#welcome .channel-metrics .channel-metric-item .progress .progress-bar.bg-indigo {
  background-color: #6366f1;
}
#welcome .channel-metrics .channel-metric-item .progress .progress-bar.bg-green {
  background-color: #25d366;
}
#welcome .schedule-tabs {
  display: flex;
  gap: 0.5rem;
}
#welcome .schedule-tabs .tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  color: #64748b;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#welcome .schedule-tabs .tab-btn:hover {
  background: #f1f5f9;
  color: #334155;
}
#welcome .schedule-tabs .tab-btn.active {
  background: #e2e8f0;
  color: #1e293b;
}
#welcome .schedule-tabs .tab-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
#welcome .empty-schedule {
  background: #f8fafc;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
}
#welcome .empty-schedule p {
  margin: 0;
  color: #64748b;
}
#welcome .staff-filter select {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  font-size: 0.875rem;
  padding: 0.375rem 2rem 0.375rem 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
#welcome .staff-filter select:hover,
#welcome .staff-filter select:focus {
  border-color: #cbd5e1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#welcome .staff-filter select:focus {
  outline: none;
  border-color: #94a3b8;
}
#welcome .schedule-list {
  height: calc(100vh - 260px);
  max-height: calc(100vh - 260px);
  overflow-y: auto;
  padding-right: 0.5rem;
}
#welcome .schedule-list::-webkit-scrollbar {
  width: 6px;
}
#welcome .schedule-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
#welcome .schedule-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
#welcome .schedule-list .booking-item {
  padding: 1rem;
  border-radius: 6px;
  background: #f8fafc;
  margin-bottom: 0.75rem;
  transition: background-color 0.2s ease;
}
#welcome .schedule-list .booking-item:hover {
  background: #f1f5f9;
}
#welcome .schedule-list .booking-item:last-child {
  margin-bottom: 0;
}
#welcome .schedule-list .booking-item h6 {
  color: #2c3e50;
  font-weight: 600;
}
#welcome .schedule-list .booking-item .time {
  color: #64748b;
  font-weight: 500;
}
#welcome .schedule-list .booking-item .badge {
  padding: 0.35rem 0.75rem;
  font-weight: 500;
}
#welcome .schedule-list .booking-item .badge.badge-success {
  background-color: #e3fcef;
  color: #0c9d58;
}
#welcome .schedule-list .booking-item .badge.badge-warning {
  background-color: #fef3c7;
  color: #d97706;
}
#welcome .loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#welcome .error-message {
  text-align: center;
  padding: 2rem;
  color: #dc2626;
  background: #fee2e2;
  border-radius: 8px;
  margin: 1rem 0;
}
#account-overview [purpose='remove-button'] {
  color: #14acc2;
}
#account-overview [purpose='remove-button']:hover {
  color: #000;
}
#account-overview .reset-demo-button,
#account-overview .reset-onboarding-button {
  margin-top: 20px;
  width: 150px;
  background: #DC2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
#account-overview .reset-demo-button:hover,
#account-overview .reset-onboarding-button:hover {
  background: #B91C1C;
  transform: translateY(-1px);
}
#tryvoice .demo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #14acc2 0%, #0d7a8a 100%);
  color: white;
  min-height: 600px;
}
#tryvoice .demo-section h1 {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.2;
}
#tryvoice .demo-section h1 .brand-name {
  font-family: 'Montserrat', sans-serif;
  background: #f1c40f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
#tryvoice .demo-section .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}
#tryvoice .demo-section .demo-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#tryvoice .demo-section .demo-controls .btn {
  min-width: 180px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#tryvoice .demo-section .demo-controls .btn.btn-primary {
  background: white;
  color: #14acc2;
  border: none;
}
#tryvoice .demo-section .demo-controls .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
#tryvoice .demo-section .demo-controls .btn.btn-danger {
  background: #e74c3c;
  border: none;
}
#tryvoice .demo-section .demo-controls .btn.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#tryvoice .demo-section .demo-controls .btn .icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
#tryvoice .demo-section .demo-controls .language-selector {
  min-width: 150px;
}
#tryvoice .demo-section .demo-controls .language-selector .form-select {
  height: 54px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: white;
  font-size: 1rem;
  padding: 0 1rem;
}
#tryvoice .demo-section .demo-controls .language-selector .form-select option {
  background: #14acc2;
  color: white;
}
#tryvoice .demo-section .demo-status {
  margin: 2rem 0;
}
#tryvoice .demo-section .demo-status .status-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#tryvoice .demo-section .demo-status .status-indicator .pulse-ring {
  width: 16px;
  height: 16px;
  background: #e74c3c;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}
#tryvoice .demo-section .demo-status .status-indicator .status-text {
  font-size: 1.1rem;
  opacity: 0.9;
}
#tryvoice .demo-section .conversation-history {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}
#tryvoice .demo-section .conversation-history .message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
#tryvoice .demo-section .conversation-history .message.user {
  background: rgba(255, 255, 255, 0.2);
  margin-left: 2rem;
}
#tryvoice .demo-section .conversation-history .message.ai {
  background: rgba(20, 172, 194, 0.3);
  margin-right: 2rem;
}
#tryvoice .demo-section .conversation-history .message .message-content {
  font-size: 1rem;
  line-height: 1.5;
}
#tryvoice .demo-section .conversation-history .message .message-time {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}
#tryvoice .demo-visualization {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#tryvoice .demo-visualization .voice-wave {
  width: 100%;
  height: 200px;
  margin-bottom: 2rem;
}
#tryvoice .demo-visualization .voice-wave canvas {
  width: 100%;
  height: 100%;
}
#tryvoice .demo-visualization .voice-wave.active canvas {
  animation: wave 1s infinite ease-in-out;
}
#tryvoice .demo-visualization .demo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#tryvoice .demo-visualization .demo-features .feature-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
#tryvoice .features-preview {
  background: #f8f9fa;
}
#tryvoice .features-preview h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}
#tryvoice .features-preview h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #14acc2;
  margin: 1rem auto 0;
  border-radius: 2px;
}
#tryvoice .features-preview .feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#tryvoice .features-preview .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
#tryvoice .features-preview .feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}
#tryvoice .features-preview .feature-card .feature-icon {
  font-size: 2.5rem;
  color: #14acc2;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
#tryvoice .features-preview .feature-card .feature-icon svg {
  width: 48px;
  height: 48px;
  color: #14acc2;
  transition: transform 0.3s ease;
}
#tryvoice .features-preview .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}
#tryvoice .features-preview .feature-card p {
  color: #666;
  line-height: 1.6;
}
#tryvoice .cta-section {
  background: white;
}
#tryvoice .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}
#tryvoice .cta-section .lead {
  color: #666;
}
#tryvoice .cta-section .btn-primary {
  background: #14acc2;
  border: none;
  min-width: 200px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#tryvoice .cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}
@keyframes wave {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5);
  }
  100% {
    transform: scaleY(1);
  }
}
#bookings .page-header .page-title {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#bookings .filters-section .card {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
}
#bookings .filters-section .card .card-body {
  padding: 1.5rem;
}
#bookings .filters-section .form-label {
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
}
#bookings .filters-section .form-control,
#bookings .filters-section .form-select {
  border-color: #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}
#bookings .filters-section .form-control:focus,
#bookings .filters-section .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
#bookings .filters-section .btn-primary {
  background: #2563eb;
  border: none;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
#bookings .filters-section .btn-primary:hover {
  background: #1d4ed8;
}
#bookings .bookings-table {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}
#bookings .bookings-table .table {
  margin-bottom: 0;
}
#bookings .bookings-table .table th {
  background: #f9fafb;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  white-space: nowrap;
}
#bookings .bookings-table .table td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
}
#bookings .bookings-table .table tr {
  border-bottom: 1px solid #f3f4f6;
}
#bookings .bookings-table .table tr:last-child {
  border-bottom: none;
}
#bookings .bookings-table .table tr:hover {
  background-color: #f9fafb;
}
#bookings .bookings-table .booking-time,
#bookings .bookings-table .customer-info,
#bookings .bookings-table .service-info,
#bookings .bookings-table .staff-info {
  line-height: 1.4;
}
#bookings .bookings-table .booking-time span,
#bookings .bookings-table .customer-info span,
#bookings .bookings-table .service-info span,
#bookings .bookings-table .staff-info span {
  color: #111827;
}
#bookings .bookings-table .booking-time small,
#bookings .bookings-table .customer-info small,
#bookings .bookings-table .service-info small,
#bookings .bookings-table .staff-info small {
  font-size: 0.75rem;
  color: #6b7280;
}
#bookings .bookings-table .status-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 1rem;
  text-transform: capitalize;
}
#bookings .bookings-table .status-badge.status-scheduled {
  background: #fff7ed;
  color: #9a3412;
}
#bookings .bookings-table .status-badge.status-confirmed {
  background: #ecfdf5;
  color: #047857;
}
#bookings .bookings-table .status-badge.status-in-progress {
  background: #eff6ff;
  color: #1d4ed8;
}
#bookings .bookings-table .status-badge.status-completed {
  background: #f0fdf4;
  color: #15803d;
}
#bookings .bookings-table .status-badge.status-cancelled {
  background: #fef2f2;
  color: #b91c1c;
}
#bookings .bookings-table .status-badge.status-no-show {
  background: #f4f4f5;
  color: #3f3f46;
}
#bookings .bookings-table .btn-group .btn {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
}
#bookings .bookings-table .btn-group .btn:not(:last-child) {
  margin-right: 0.5rem;
}
#bookings .bookings-table .btn-group .btn i {
  font-size: 0.875rem;
}
#bookings .empty-state {
  padding: 2rem;
}
#bookings .empty-state i {
  display: block;
  margin-bottom: 1rem;
  color: #9ca3af;
}
#bookings .empty-state h5 {
  color: #374151;
  margin-bottom: 0.5rem;
}
#bookings .empty-state p {
  color: #6b7280;
  margin-bottom: 0;
}
#bookings .booking-details h6 {
  color: #495057;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
#bookings .booking-details h6:first-child {
  margin-top: 0;
}
#bookings .booking-details p {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
}
#bookings .transcript-container {
  max-height: 55vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
#bookings .transcript-container::-webkit-scrollbar {
  width: 6px;
}
#bookings .transcript-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
#bookings .transcript-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
#bookings .transcript-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
#bookings .transcript-container .message {
  margin-bottom: 1.25rem;
  max-width: 85%;
  position: relative;
}
#bookings .transcript-container .message.agent {
  margin-right: auto;
}
#bookings .transcript-container .message.agent .message-header .message-role {
  color: #2563eb;
}
#bookings .transcript-container .message.agent .message-content {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
}
#bookings .transcript-container .message.user {
  margin-left: auto;
}
#bookings .transcript-container .message.user .message-header .message-role {
  color: #4b5563;
}
#bookings .transcript-container .message.user .message-content {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
#bookings .transcript-container .message .message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  padding: 0 0.5rem;
}
#bookings .transcript-container .message .message-header .message-role {
  font-size: 0.875rem;
  font-weight: 500;
}
#bookings .transcript-container .message .message-header .message-time {
  font-size: 0.75rem;
  color: #6b7280;
}
#bookings .transcript-container .message .message-content {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  position: relative;
}
#bookings .transcript-container .message .message-content .message-text {
  color: #1f2937;
  line-height: 1.5;
  font-size: 0.9375rem;
  white-space: pre-wrap;
}
#bookings #bookingDetailsModal .modal-content,
#bookings #transcriptModal .modal-content {
  border-radius: 1.25rem;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  padding: 0;
  overflow: hidden;
}
#bookings #bookingDetailsModal .modal-content::before,
#bookings #transcriptModal .modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF69B4, #9370DB, #20B2AA);
}
#bookings #bookingDetailsModal .modal-header,
#bookings #transcriptModal .modal-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}
#bookings #bookingDetailsModal .modal-header .modal-title,
#bookings #transcriptModal .modal-header .modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0.75rem;
}
#bookings #bookingDetailsModal .modal-header .modal-title:after,
#bookings #transcriptModal .modal-header .modal-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #FF69B4, #9370DB);
}
#bookings #bookingDetailsModal .modal-header .conversation-meta,
#bookings #transcriptModal .modal-header .conversation-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}
#bookings #bookingDetailsModal .modal-body,
#bookings #transcriptModal .modal-body {
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.98);
}
#bookings #bookingDetailsModal .modal-body .booking-details h6,
#bookings #transcriptModal .modal-body .booking-details h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#bookings #bookingDetailsModal .modal-body .booking-details h6:before,
#bookings #transcriptModal .modal-body .booking-details h6:before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #FF69B4, #9370DB);
  margin-right: 1rem;
  border-radius: 3px;
}
#bookings #bookingDetailsModal .modal-body .booking-details p,
#bookings #transcriptModal .modal-body .booking-details p {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  padding-left: calc(4px);
  font-size: 0.95rem;
}
#bookings #bookingDetailsModal .modal-body .booking-details p .fw-medium,
#bookings #transcriptModal .modal-body .booking-details p .fw-medium {
  color: #2c3e50;
  font-weight: 500;
}
#bookings #bookingDetailsModal .modal-body .transcript-container,
#bookings #transcriptModal .modal-body .transcript-container {
  max-height: 60vh;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}
#bookings #bookingDetailsModal .modal-body .transcript-container::-webkit-scrollbar,
#bookings #transcriptModal .modal-body .transcript-container::-webkit-scrollbar {
  width: 6px;
}
#bookings #bookingDetailsModal .modal-body .transcript-container::-webkit-scrollbar-track,
#bookings #transcriptModal .modal-body .transcript-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
#bookings #bookingDetailsModal .modal-body .transcript-container::-webkit-scrollbar-thumb,
#bookings #transcriptModal .modal-body .transcript-container::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #FF69B4, #9370DB);
  border-radius: 3px;
}
#bookings #bookingDetailsModal .modal-body .transcript-container::-webkit-scrollbar-thumb:hover,
#bookings #transcriptModal .modal-body .transcript-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #FF1493, #8A2BE2);
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message,
#bookings #transcriptModal .modal-body .transcript-container .message {
  margin-bottom: 1.5rem;
  max-width: 85%;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.agent,
#bookings #transcriptModal .modal-body .transcript-container .message.agent {
  margin-right: auto;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.agent .message-header .message-role,
#bookings #transcriptModal .modal-body .transcript-container .message.agent .message-header .message-role {
  color: #FF69B4;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.agent .message-content,
#bookings #transcriptModal .modal-body .transcript-container .message.agent .message-content {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(147, 112, 219, 0.1));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 1rem 1rem 1rem 0;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.user,
#bookings #transcriptModal .modal-body .transcript-container .message.user {
  margin-left: auto;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.user .message-header .message-role,
#bookings #transcriptModal .modal-body .transcript-container .message.user .message-header .message-role {
  color: #20B2AA;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message.user .message-content,
#bookings #transcriptModal .modal-body .transcript-container .message.user .message-content {
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(147, 112, 219, 0.1));
  border: 1px solid rgba(32, 178, 170, 0.2);
  border-radius: 1rem 1rem 0 1rem;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message .message-header,
#bookings #transcriptModal .modal-body .transcript-container .message .message-header {
  padding: 0 0.75rem;
  margin-bottom: 0.5rem;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message .message-header .message-role,
#bookings #transcriptModal .modal-body .transcript-container .message .message-header .message-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message .message-header .message-time,
#bookings #transcriptModal .modal-body .transcript-container .message .message-header .message-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #888;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message .message-content,
#bookings #transcriptModal .modal-body .transcript-container .message .message-content {
  padding: 1rem 1.25rem;
}
#bookings #bookingDetailsModal .modal-body .transcript-container .message .message-content .message-text,
#bookings #transcriptModal .modal-body .transcript-container .message .message-content .message-text {
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 0.95rem;
}
#bookings #bookingDetailsModal .modal-footer,
#bookings #transcriptModal .modal-footer {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
}
#bookings #bookingDetailsModal .modal-footer .btn,
#bookings #transcriptModal .modal-footer .btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
#bookings #bookingDetailsModal .modal-footer .btn.btn-primary,
#bookings #transcriptModal .modal-footer .btn.btn-primary {
  background: linear-gradient(90deg, #FF69B4, #9370DB);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}
#bookings #bookingDetailsModal .modal-footer .btn.btn-primary:hover,
#bookings #transcriptModal .modal-footer .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}
#bookings #bookingDetailsModal .modal-footer .btn.btn-secondary,
#bookings #transcriptModal .modal-footer .btn.btn-secondary {
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
}
#bookings #bookingDetailsModal .modal-footer .btn.btn-secondary:hover,
#bookings #transcriptModal .modal-footer .btn.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #ccc;
  transform: translateY(-2px);
}
#bookings #bookingDetailsModal .modal-footer .btn i,
#bookings #transcriptModal .modal-footer .btn i {
  margin-right: 0.5rem;
}
#bookings .calendar-view {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#bookings .calendar-header {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  border-bottom: 1px solid #e5e7eb;
}
#bookings .calendar-header .time-column {
  border-right: 1px solid #e5e7eb;
}
#bookings .calendar-header .day-column .day-header {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
#bookings .calendar-header .day-column .day-header .day-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}
#bookings .calendar-header .day-column .day-header .day-date {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
#bookings .calendar-header .day-column:last-child {
  border-right: none;
}
#bookings .calendar-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
}
#bookings .calendar-grid .time-column {
  border-right: 1px solid #e5e7eb;
  background: #f9fafb;
  position: sticky;
  left: 0;
  z-index: 2;
}
#bookings .calendar-grid .time-column .time-slot {
  height: 60px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  background: #f9fafb;
}
#bookings .calendar-grid .day-column {
  position: relative;
  border-right: 1px solid #e5e7eb;
}
#bookings .calendar-grid .day-column:last-child {
  border-right: none;
}
#bookings .calendar-grid .day-column .time-slot {
  height: 60px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}
#bookings .calendar-grid .day-column .time-slot:hover {
  background: #f9fafb;
}
#bookings .booking-block {
  position: absolute;
  right: 0;
  width: 100%;
  border-radius: 4px;
  padding: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 2px;
}
#bookings .booking-block:hover {
  transform: scale(1.01);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#bookings .booking-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--staff-color, #cbd5e1);
}
#bookings .booking-block.cascade-1 {
  width: calc(80%);
  margin-left: auto;
  z-index: 2;
}
#bookings .booking-block.cascade-2 {
  width: calc(60%);
  margin-left: auto;
  z-index: 3;
}
#bookings .booking-block.cascade-3 {
  width: calc(40%);
  margin-left: auto;
  z-index: 4;
}
#bookings .booking-block.cascade-4 {
  width: calc(20%);
  margin-left: auto;
  z-index: 5;
}
#bookings .booking-block.cascade-5 {
  width: calc(0%);
  margin-left: auto;
  z-index: 6;
}
#bookings .booking-block .booking-tooltip {
  display: none;
  position: absolute;
  right: calc(110%);
  top: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
  width: 200px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 20;
  pointer-events: none;
}
#bookings .booking-block .booking-tooltip .tooltip-content {
  font-size: 0.75rem;
  line-height: 1.4;
}
#bookings .booking-block .booking-tooltip .tooltip-content .tooltip-time {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}
#bookings .booking-block .booking-tooltip .tooltip-content .tooltip-customer {
  color: #111827;
  margin-bottom: 0.25rem;
}
#bookings .booking-block .booking-tooltip .tooltip-content .tooltip-service {
  color: #6b7280;
  margin-bottom: 0.25rem;
}
#bookings .booking-block .booking-tooltip .tooltip-content .tooltip-staff {
  color: #6b7280;
  display: flex;
  align-items: center;
}
#bookings .booking-block .booking-tooltip .tooltip-content .tooltip-staff .staff-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-color: var(--staff-color, #cbd5e1);
}
#bookings .booking-block:hover .booking-tooltip {
  display: block;
}
#bookings .booking-block.position-2 .booking-tooltip {
  left: auto;
  right: 100%;
}
#bookings .booking-block.status-scheduled {
  background: #fff7ed;
  border: 1px solid #fdba74;
}
#bookings .booking-block.status-confirmed {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
}
#bookings .booking-block.status-in-progress {
  background: #eff6ff;
  border: 1px solid #93c5fd;
}
#bookings .booking-block.status-completed {
  background: #f0fdf4;
  border: 1px solid #86efac;
}
#bookings .booking-block.status-cancelled {
  background: #fef2f2;
  border: 1px solid #fca5a5;
}
#bookings .booking-block.status-no-show {
  background: #f4f4f5;
  border: 1px solid #d1d5db;
}
#bookings .booking-block .booking-content {
  font-size: 0.7rem;
  line-height: 1.3;
}
#bookings .booking-block .booking-content .booking-time {
  font-weight: 600;
  color: #374151;
  font-size: 0.7rem;
}
#bookings .booking-block .booking-content .booking-customer {
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.7rem;
}
#bookings .booking-block .booking-content .booking-service {
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.65rem;
}
#bookings .booking-block .booking-content .booking-staff {
  color: #6b7280;
  font-size: 0.65rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#bookings .time-slot {
  min-height: 60px !important;
  height: auto !important;
  padding-bottom: 2px;
}
#bookings .staff-color-1 {
  --staff-color: #3b82f6;
}
#bookings .staff-color-2 {
  --staff-color: #10b981;
}
#bookings .staff-color-3 {
  --staff-color: #f59e0b;
}
#bookings .staff-color-4 {
  --staff-color: #ef4444;
}
#bookings .staff-color-5 {
  --staff-color: #8b5cf6;
}
#bookings .staff-color-6 {
  --staff-color: #ec4899;
}
#bookings .staff-color-7 {
  --staff-color: #14b8a6;
}
#bookings .staff-color-8 {
  --staff-color: #f97316;
}
#bookings .staff-color-9 {
  --staff-color: #6366f1;
}
#bookings .staff-color-10 {
  --staff-color: #84cc16;
}
@media (max-width: 768px) {
  #bookings .filters-section .col-md-3 {
    margin-bottom: 1rem;
  }
  #bookings .filters-section .col-md-3:last-child {
    margin-bottom: 0;
  }
  #bookings .bookings-table {
    overflow-x: auto;
  }
  #bookings .bookings-table table {
    min-width: 800px;
  }
  #bookings .calendar-view {
    overflow-x: auto;
  }
  #bookings .calendar-header,
  #bookings .calendar-grid {
    min-width: 800px;
  }
  #bookings .time-column {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #f9fafb;
  }
}
#bookings .loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
#bookings .loading-spinner {
  width: 50px;
  height: 50px;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}
#bookings .loading-spinner .path {
  stroke: #2563eb;
  stroke-dasharray: 125;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
#ai-assistant .page-header .page-title {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    border-color: #45a049;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
  }
}
#ai-assistant .assistant-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 0;
  overflow: hidden;
  border: 2px solid transparent;
}
#ai-assistant .assistant-card.pulsating {
  animation: pulsate 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  will-change: transform, box-shadow, border-color;
}
#ai-assistant .assistant-card:hover {
  transform: translateY(-5px);
}
#ai-assistant .assistant-card.active {
  border: 2px solid #4CAF50;
}
#ai-assistant .assistant-card.coming-soon {
  opacity: 0.85;
}
#ai-assistant .assistant-card .assistant-image {
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
}
#ai-assistant .assistant-card .assistant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ai-assistant .assistant-card .assistant-content {
  padding: 0.5rem;
}
#ai-assistant .assistant-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
#ai-assistant .assistant-card .role {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
#ai-assistant .assistant-card .status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
#ai-assistant .assistant-card .status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}
#ai-assistant .assistant-card .status.active {
  color: #4CAF50;
}
#ai-assistant .assistant-card .status.active .status-dot {
  background-color: #4CAF50;
}
#ai-assistant .assistant-card .status.coming-soon {
  color: #FFA000;
}
#ai-assistant .assistant-card .status.coming-soon .status-dot {
  background-color: #FFA000;
}
#ai-assistant .assistant-card .features {
  margin: 0.5rem 0;
  text-align: left;
  min-height: 260px;
  height: 260px;
}
#ai-assistant .assistant-card .features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#ai-assistant .assistant-card .features ul li {
  padding: 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  font-size: 13px;
}
#ai-assistant .assistant-card .features ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}
#ai-assistant .assistant-card .btn {
  width: 100%;
  padding: 0.75rem;
  font-weight: 500;
  margin-top: 5px;
}
#ai-assistant .assistant-card .btn.btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
}
#ai-assistant .assistant-card .btn.btn-primary:hover {
  background-color: #449d48;
}
#ai-assistant .assistant-card .btn.btn-secondary {
  background-color: #9E9E9E;
  border-color: #9E9E9E;
}
#ai-assistant .assistant-card .btn.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
#ai-assistant .assistant-card .btn.btn-danger:hover {
  background-color: #d32535;
}
#ai-assistant #yukiConfigModal .modal-dialog {
  border: none;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
#ai-assistant #yukiConfigModal .modal-dialog .modal-content {
  padding: 0;
  border: none;
  background: #FFFFFF;
}
#ai-assistant #yukiConfigModal .modal-header {
  padding: 24px 32px;
  background: #FFFFFF;
  border-bottom: 1px solid #F0F0F0;
}
#ai-assistant #yukiConfigModal .modal-header .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}
#ai-assistant #yukiConfigModal .modal-body {
  padding: 0;
}
#ai-assistant #yukiConfigModal .step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: #F9FAFB;
  border-bottom: 1px solid #F0F0F0;
  margin: 0;
}
#ai-assistant #yukiConfigModal .step-navigation .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  padding: 0;
  height: 100px;
}
#ai-assistant #yukiConfigModal .step-navigation .step:before {
  content: '';
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}
#ai-assistant #yukiConfigModal .step-navigation .step:after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #E5E7EB;
  z-index: 1;
}
#ai-assistant #yukiConfigModal .step-navigation .step:last-child:after {
  display: none;
}
#ai-assistant #yukiConfigModal .step-navigation .step:nth-child(1):before {
  content: '1';
}
#ai-assistant #yukiConfigModal .step-navigation .step:nth-child(2):before {
  content: '2';
}
#ai-assistant #yukiConfigModal .step-navigation .step:nth-child(3):before {
  content: '3';
}
#ai-assistant #yukiConfigModal .step-navigation .step:nth-child(4):before {
  content: '4';
}
#ai-assistant #yukiConfigModal .step-navigation .step:nth-child(5):before {
  content: '5';
}
#ai-assistant #yukiConfigModal .step-navigation .step span {
  font-size: 14px;
  color: #6B7280;
  margin-top: 6px;
  font-weight: 500;
}
#ai-assistant #yukiConfigModal .step-navigation .step.active:before {
  background: #4F46E5;
  border-color: #4F46E5;
  color: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
#ai-assistant #yukiConfigModal .step-navigation .step.active span {
  color: #4F46E5;
  font-weight: 600;
}
#ai-assistant #yukiConfigModal .step-navigation .step.active:after {
  background: #4F46E5;
}
#ai-assistant #yukiConfigModal .step-navigation .step.completed:before {
  background: #4F46E5;
  border-color: #4F46E5;
  color: white;
}
#ai-assistant #yukiConfigModal .step-navigation .step.completed:after {
  background: #4F46E5;
}
#ai-assistant #yukiConfigModal .form-content {
  padding: 0 32px;
}
#ai-assistant #yukiConfigModal .form-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}
#ai-assistant #yukiConfigModal .form-content .form-check {
  margin-bottom: 12px;
  padding-left: 28px;
}
#ai-assistant #yukiConfigModal .form-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -28px;
  margin-top: 2px;
  border: 2px solid #D1D5DB;
}
#ai-assistant #yukiConfigModal .form-content .form-check .form-check-input:checked {
  background-color: #4F46E5;
  border-color: #4F46E5;
}
#ai-assistant #yukiConfigModal .form-content .form-check .form-check-label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
#ai-assistant #yukiConfigModal .form-content small {
  display: block;
  color: #6B7280;
  font-size: 13px;
  margin-top: 8px;
}
#ai-assistant #yukiConfigModal .form-content textarea {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  color: #374151;
  resize: vertical;
}
#ai-assistant #yukiConfigModal .form-content textarea:disabled {
  background: #F9FAFB;
  color: #6B7280;
}
#ai-assistant #yukiConfigModal .form-content .step-title {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E5E7EB;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section h6 {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section .form-check {
  margin-bottom: 12px;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section .form-check:last-child {
  margin-bottom: 0;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section .form-check .form-check-input:checked {
  background-color: #4F46E5;
  border-color: #4F46E5;
}
#ai-assistant #yukiConfigModal .form-content .targeting-options .targeting-section .form-check .form-check-label {
  font-size: 14px;
  color: #374151;
}
#ai-assistant #yukiConfigModal .confirmation-details {
  background: #F9FAFB;
  padding: 24px;
  border-radius: 12px;
  margin: 0 32px;
}
#ai-assistant #yukiConfigModal .confirmation-details p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
#ai-assistant #yukiConfigModal .confirmation-details p strong {
  color: #111827;
  font-weight: 600;
}
#ai-assistant #yukiConfigModal .confirmation-details ul {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 16px;
}
#ai-assistant #yukiConfigModal .confirmation-details ul li {
  position: relative;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}
#ai-assistant #yukiConfigModal .confirmation-details ul li:before {
  content: "•";
  position: absolute;
  left: -18px;
  color: #4F46E5;
  font-weight: bold;
}
#ai-assistant #yukiConfigModal .confirmation-details .message-preview {
  background: white;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  margin-top: 8px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}
#ai-assistant #yukiConfigModal .modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
#ai-assistant #yukiConfigModal .modal-footer .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-secondary {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #374151;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-secondary:hover {
  background: #E5E7EB;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-primary {
  background: #4F46E5;
  border: 1px solid #4F46E5;
  color: white;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-primary:hover {
  background: #4338CA;
  border-color: #4338CA;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-success {
  background: #10B981;
  border: 1px solid #10B981;
  color: white;
}
#ai-assistant #yukiConfigModal .modal-footer .btn.btn-success:hover {
  background: #059669;
  border-color: #059669;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog {
  max-width: 1000px;
  margin: 2rem auto;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog .modal-content {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-width: none;
  padding: 0;
  margin: 0;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog .modal-header {
  border-bottom: 1px solid #E5E7EB;
  padding: 1.5rem 2rem;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog .modal-body {
  padding: 2rem 0;
}
#ai-assistant #campaignAnalyticsModal .modal-dialog .modal-footer {
  border-top: 1px solid #E5E7EB;
  padding: 1.5rem 2rem;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 0 32px;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon svg {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon.info {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-icon.primary {
  background: rgba(79, 70, 229, 0.1);
  color: #4F46E5;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
#ai-assistant #campaignAnalyticsModal .analytics-cards .analytics-card .analytics-content p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}
#ai-assistant #campaignAnalyticsModal .customer-list {
  padding: 0 32px;
}
#ai-assistant #campaignAnalyticsModal .customer-list h6 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .list-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .list-filters .filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background: #F3F4F6;
  border: none;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
#ai-assistant #campaignAnalyticsModal .customer-list .list-filters .filter-btn:hover {
  background: #E5E7EB;
}
#ai-assistant #campaignAnalyticsModal .customer-list .list-filters .filter-btn.active {
  background: #4F46E5;
  color: white;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item.success {
  border-left: 4px solid #10B981;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item.warning {
  border-left: 4px solid #F59E0B;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info {
  width: 100%;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .customer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info h6 {
  font-size: 16px;
  margin: 0;
  color: #111827;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details .new-appointment,
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details .last-visit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details .new-appointment svg,
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details .last-visit svg {
  width: 16px;
  height: 16px;
  color: #6B7280;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .appointment-details .new-appointment {
  margin-bottom: 4px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info span {
  font-size: 14px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .customer-info .staff-badge {
  background: #F3F4F6;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  margin-left: 8px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .status-indicator svg {
  width: 20px;
  height: 20px;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .status-indicator:has(path[d*="7.07-7.071"]) {
  color: #10B981;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .status-indicator:has(path[d*="9.172 7.757"]) {
  color: #F59E0B;
}
#ai-assistant #campaignAnalyticsModal .customer-list .customer-items .customer-item .status-indicator:has(path[d*="V7h-2v7h6"]) {
  color: #3B82F6;
}
#ai-assistant .debug-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 8px 16px;
  background: #4F46E5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10000;
}
#ai-assistant .debug-button:hover {
  background: #4338CA;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
#ai-assistant .reset-button {
  position: fixed;
  bottom: 20px;
  left: 140px;
  padding: 8px 16px;
  background: #DC2626;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10000;
}
#ai-assistant .reset-button:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
#ai-assistant .voice-accent-selector {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  border: 1px solid #E5E7EB;
}
#ai-assistant .voice-accent-selector .voice-selector-content .voice-label {
  display: block;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
  font-weight: 500;
  text-align: center;
}
#ai-assistant .voice-accent-selector .voice-selector-content .voice-options {
  display: flex;
  gap: 8px;
}
#ai-assistant .voice-accent-selector .voice-selector-content .voice-options .voice-option {
  padding: 8px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  color: #374151;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#ai-assistant .voice-accent-selector .voice-selector-content .voice-options .voice-option:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
  transform: translateY(-1px);
}
#ai-assistant .voice-accent-selector .voice-selector-content .voice-options .voice-option.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
}
#ai-assistant #namiUploadModal .modal-dialog {
  max-width: 900px;
  width: 90%;
  border: none;
  margin: 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
#ai-assistant #namiUploadModal .modal-dialog .modal-content {
  padding: 0;
  border: none;
  background: #FFFFFF;
  max-width: none !important;
}
#ai-assistant #namiUploadModal .modal-header {
  padding: 24px 32px;
  background: #FFFFFF;
  border-bottom: 1px solid #F0F0F0;
}
#ai-assistant #namiUploadModal .modal-header .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}
#ai-assistant #namiUploadModal .modal-body {
  padding: 0;
}
#ai-assistant #namiUploadModal .step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: #F9FAFB;
  border-bottom: 1px solid #F0F0F0;
}
#ai-assistant #namiUploadModal .step-navigation .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  height: 100px;
}
#ai-assistant #namiUploadModal .step-navigation .step .step-number {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}
#ai-assistant #namiUploadModal .step-navigation .step:after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #E5E7EB;
  z-index: 1;
}
#ai-assistant #namiUploadModal .step-navigation .step:last-child:after {
  display: none;
}
#ai-assistant #namiUploadModal .step-navigation .step span {
  font-size: 14px;
  color: #6B7280;
  margin-top: 6px;
  font-weight: 500;
}
#ai-assistant #namiUploadModal .step-navigation .step.active .step-number {
  background: #4F46E5;
  border-color: #4F46E5;
  color: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
#ai-assistant #namiUploadModal .step-navigation .step.active span {
  color: #4F46E5;
  font-weight: 600;
}
#ai-assistant #namiUploadModal .step-navigation .step.active:after {
  background: #4F46E5;
}
#ai-assistant #namiUploadModal .step-navigation .step.completed .step-number {
  background: #4F46E5;
  border-color: #4F46E5;
  color: white;
}
#ai-assistant #namiUploadModal .step-navigation .step.completed:after {
  background: #4F46E5;
}
#ai-assistant #namiUploadModal .upload-section {
  padding: 24px 32px;
  background: #F9FAFB;
}
#ai-assistant #namiUploadModal .upload-section .dropzone {
  border: 2px dashed #E5E7EB;
  border-radius: 12px;
  min-height: 200px;
  padding: 32px;
  text-align: center;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
#ai-assistant #namiUploadModal .upload-section .dropzone:hover,
#ai-assistant #namiUploadModal .upload-section .dropzone.dz-drag-hover {
  border-color: #4F46E5;
  background: rgba(79, 70, 229, 0.05);
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-message {
  margin: 2em 0;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-message .upload-icon {
  width: 48px;
  height: 48px;
  color: #6B7280;
  margin-bottom: 1rem;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-message h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-message p {
  color: #6B7280;
  margin-bottom: 0.5rem;
  font-size: 14px;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-message p.file-types {
  color: #9CA3AF;
  font-size: 0.875rem;
  margin-top: 1rem;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview {
  margin: 1rem;
  min-height: 80px;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-image {
  border-radius: 8px;
  overflow: hidden;
  width: 80px;
  height: 80px;
  position: relative;
  display: block;
  z-index: 10;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-details {
  padding: 0.5rem;
  font-size: 14px;
  color: #374151;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-progress {
  width: 80%;
  margin-left: -40%;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-progress .dz-upload {
  background: #4F46E5;
  width: 0;
  height: 100%;
  transition: width 0.3s ease;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-success-mark,
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-error-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  display: none;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-success-mark {
  color: #10B981;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview .dz-error-mark {
  color: #EF4444;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-preview.dz-error .dz-error-mark {
  display: block;
}
#ai-assistant #namiUploadModal .upload-section .dropzone .dz-error-message {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
#ai-assistant #namiUploadModal .loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 32px;
  background: #F9FAFB;
}
#ai-assistant #namiUploadModal .loading-container p {
  color: #6B7280;
  margin-top: 16px;
  font-size: 14px;
}
#ai-assistant #namiUploadModal .loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E7EB;
  border-radius: 50%;
  border-top-color: #4F46E5;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#ai-assistant #namiUploadModal .modal-footer {
  padding: 12px 16px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
#ai-assistant #namiUploadModal .modal-footer .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}
#ai-assistant #namiUploadModal .modal-footer .btn.btn-secondary {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #374151;
}
#ai-assistant #namiUploadModal .modal-footer .btn.btn-secondary:hover {
  background: #E5E7EB;
}
#ai-assistant #namiUploadModal .modal-footer .btn.btn-primary {
  background: #4F46E5;
  border: 1px solid #4F46E5;
  color: white;
}
#ai-assistant #namiUploadModal .modal-footer .btn.btn-primary:hover {
  background: #4338CA;
  border-color: #4338CA;
}
#ai-assistant #namiUploadModal .modal-footer .btn.btn-primary:disabled {
  background: #9CA3AF;
  border-color: #9CA3AF;
  cursor: not-allowed;
}
#ai-assistant #namiUploadModal .form-content {
  padding: 24px 32px;
}
#ai-assistant #namiUploadModal .form-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}
#ai-assistant #namiUploadModal .form-content .form-group {
  margin-bottom: 20px;
}
#ai-assistant #namiUploadModal .form-content .form-group .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}
#ai-assistant #namiUploadModal .form-content .form-group .form-control {
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}
#ai-assistant #namiUploadModal .form-content .form-group .form-control:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
#ai-assistant #namiUploadModal .existing-files {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}
#ai-assistant #namiUploadModal .existing-files h6 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
#ai-assistant #namiUploadModal .existing-files .file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
#ai-assistant #namiUploadModal .existing-files .file-grid .file-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}
#ai-assistant #namiUploadModal .existing-files .file-grid .file-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#ai-assistant #namiUploadModal .existing-files .file-grid .file-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
#ai-assistant #namiUploadModal .existing-files .file-grid .file-item .file-name {
  font-size: 12px;
  color: #374151;
  margin: 8px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#ai-assistant #namiUploadModal .avatar-selection-section {
  padding: 24px 32px;
  background: #F9FAFB;
}
#ai-assistant #namiUploadModal .avatar-selection-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls {
  margin-bottom: 24px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group {
  margin-bottom: 0;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 12px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group .filter-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group .filter-options .filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: capitalize;
  white-space: nowrap;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group .filter-options .filter-btn:hover {
  background: #E5E7EB;
  border-color: #D1D5DB;
}
#ai-assistant #namiUploadModal .avatar-selection-section .filter-controls .filter-group .filter-options .filter-btn.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .no-results {
  grid-column: 2;
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .no-results .no-results-icon {
  width: 48px;
  height: 48px;
  color: #9CA3AF;
  margin-bottom: 16px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .no-results p {
  color: #6B7280;
  margin-bottom: 16px;
  font-size: 14px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .no-results .btn-link {
  color: #4F46E5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .no-results .btn-link:hover {
  text-decoration: underline;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E5E7EB;
  transition: all 0.2s ease;
  cursor: pointer;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: #4F46E5;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item.selected {
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item.selected .avatar-overlay {
  opacity: 1;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-preview {
  position: relative;
  padding-top: 100%;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay .check-icon {
  width: 40px;
  height: 40px;
  color: #4F46E5;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay .check-icon svg {
  width: 100%;
  height: 100%;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-info {
  padding: 12px;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-info h6 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}
#ai-assistant #namiUploadModal .avatar-selection-section .avatar-grid .avatar-item .avatar-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}
#ai-assistant #namiUploadModal .voice-selection-section {
  padding: 24px 32px;
  background: #F9FAFB;
  border-radius: 12px;
}
#ai-assistant #namiUploadModal .voice-selection-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls {
  margin-bottom: 24px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group {
  margin-bottom: 0;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 12px;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group .filter-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: capitalize;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn:hover {
  background: #E5E7EB;
  border-color: #D1D5DB;
  transform: translateY(-1px);
}
#ai-assistant #namiUploadModal .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.1);
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item:hover {
  border-color: #4F46E5;
  background: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item.selected {
  border-color: #4F46E5;
  background: #EEF2FF;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item.selected:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4F46E5;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item.selected .voice-name {
  color: #4F46E5;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-meta {
  font-size: 12px;
  color: #6B7280;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls .btn-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4F46E5;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 13px;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls .btn-link:hover {
  background: #EEF2FF;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls .btn-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: all 0.2s;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls .btn-link:has(rect) {
  background: #EEF2FF;
  color: #4338CA;
}
#ai-assistant #namiUploadModal .voice-selection-section .voice-list .voice-item .voice-controls .btn-link:has(rect) svg {
  stroke-width: 2.5;
}
#ai-assistant #namiUploadModal .voice-selection-section .no-voices {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}
#ai-assistant #namiUploadModal .voice-selection-section .no-voices .no-voices-icon {
  width: 48px;
  height: 48px;
  color: #9CA3AF;
  margin-bottom: 16px;
}
#ai-assistant #namiUploadModal .voice-selection-section .no-voices p {
  margin: 0;
  color: #6B7280;
}
#ai-assistant #namiUploadModal .voice-selection-section .no-voices p:first-of-type {
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}
#ai-assistant .script-selection-section {
  padding: 24px 32px;
  background: #F9FAFB;
}
#ai-assistant .script-selection-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}
#ai-assistant .script-selection-section .script-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
#ai-assistant .script-selection-section .script-options .script-option {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #E5E7EB;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
#ai-assistant .script-selection-section .script-options .script-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: #4F46E5;
}
#ai-assistant .script-selection-section .script-options .script-option.selected {
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
#ai-assistant .script-selection-section .script-options .script-option.selected .script-overlay {
  opacity: 1;
}
#ai-assistant .script-selection-section .script-options .script-option .script-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
#ai-assistant .script-selection-section .script-options .script-option .script-header h6 {
  font-size: 14px;
  margin: 0;
}
#ai-assistant .script-selection-section .script-options .script-option .script-header .script-style {
  font-size: 12px;
  color: #6B7280;
  background: #F3F4F6;
  padding: 4px 8px;
  border-radius: 12px;
}
#ai-assistant .script-selection-section .script-options .script-option .script-content {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
#ai-assistant .script-selection-section .script-options .script-option .script-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 12px;
}
#ai-assistant .script-selection-section .script-options .script-option .script-overlay .check-icon {
  width: 40px;
  height: 40px;
  color: #4F46E5;
}
#ai-assistant .script-selection-section .script-options .script-option .script-overlay .check-icon svg {
  width: 100%;
  height: 100%;
}
#ai-assistant .script-selection-section .custom-script-editor {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}
#ai-assistant .script-selection-section .custom-script-editor h6 {
  margin-bottom: 16px;
}
#ai-assistant .script-selection-section .custom-script-editor textarea {
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
}
#ai-assistant .script-selection-section .custom-script-editor textarea:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
  outline: none;
}
#ai-assistant .video-generation-section {
  padding: 24px 32px;
  background: #F9FAFB;
}
#ai-assistant .video-generation-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}
#ai-assistant .video-generation-section .video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
#ai-assistant .video-generation-section .video-container .video-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
#ai-assistant .video-generation-section .video-container .video-item .generated-video {
  width: 100%;
  height: auto;
  display: block;
}
#ai-assistant .video-generation-section .video-container .video-item .video-actions {
  padding: 1rem;
  text-align: center;
}
#ai-assistant .video-generation-section .video-container .video-item .video-actions .btn {
  width: 100%;
  transition: all 0.3s ease;
}
#ai-assistant .video-generation-section .video-container .video-item .video-actions .btn.btn-success {
  pointer-events: none;
}
#ai-assistant .video-generation-section .loading-container {
  text-align: center;
  padding: 2rem;
}
#ai-assistant .video-generation-section .loading-container .loading-spinner {
  margin-bottom: 1rem;
}
#ai-assistant .video-generation-section .loading-container .progress-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
}
#ai-assistant .video-generation-section .loading-container .progress-bar .progress {
  height: 100%;
  background: #007bff;
  transition: width 0.3s ease;
}
#ai-assistant .video-generation-section .error-message {
  color: #dc3545;
  margin-top: 1rem;
}
#ai-assistant .avatar-selection-section {
  padding: 24px 32px;
}
#ai-assistant .avatar-selection-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}
#ai-assistant .avatar-selection-section .avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E5E7EB;
  transition: all 0.2s ease;
  cursor: pointer;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: #4F46E5;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item.selected {
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item.selected .avatar-overlay {
  opacity: 1;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-preview {
  position: relative;
  padding-top: 100%;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay .check-icon {
  width: 40px;
  height: 40px;
  color: #4F46E5;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-preview .avatar-overlay .check-icon svg {
  width: 100%;
  height: 100%;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-info {
  padding: 12px;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-info h6 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}
#ai-assistant .avatar-selection-section .avatar-grid .avatar-item .avatar-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}
#ai-assistant .audience-selection-section {
  padding: 24px 32px;
}
#ai-assistant .audience-selection-section .audience-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
#ai-assistant .audience-selection-section .audience-options .audience-option {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
#ai-assistant .audience-selection-section .audience-options .audience-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#ai-assistant .audience-selection-section .audience-options .audience-option.selected {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}
#ai-assistant .audience-selection-section .audience-options .audience-option .audience-icon {
  width: 40px;
  height: 40px;
  color: #007bff;
  flex-shrink: 0;
}
#ai-assistant .audience-selection-section .audience-options .audience-option .audience-icon svg {
  width: 100%;
  height: 100%;
}
#ai-assistant .audience-selection-section .audience-options .audience-option .audience-content {
  flex-grow: 1;
}
#ai-assistant .audience-selection-section .audience-options .audience-option .audience-content h6 {
  margin: 0 0 0.5rem;
  color: #333;
}
#ai-assistant .audience-selection-section .audience-options .audience-option .audience-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}
#ai-assistant .create-ad-section {
  padding: 24px 32px;
}
#ai-assistant .create-ad-section .ad-summary {
  margin-top: 1.5rem;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview {
  max-width: 350px;
  background: #fff;
  border: 1px solid #dddfe2;
  border-radius: 8px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info .page-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info .page-details .page-name {
  font-weight: 600;
  color: #050505;
  font-size: 14px;
  line-height: 18px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info .page-details .post-meta {
  font-size: 12px;
  color: #65676b;
  display: flex;
  align-items: center;
  gap: 4px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info .page-details .post-meta .dot {
  font-size: 12px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .page-info .page-details .post-meta .sponsored {
  color: #65676b;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-header .more-options svg {
  width: 20px;
  height: 20px;
  color: #65676b;
  cursor: pointer;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-caption {
  padding: 12px;
  font-size: 15px;
  line-height: 1.3333;
  color: #050505;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-content {
  position: relative;
  background: #000;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-content .fb-ad-video {
  height: 622px;
  width: 350px;
  display: block;
  aspect-ratio: 1.77777778;
  object-fit: cover;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f2f5;
  border-top: 1px solid #dddfe2;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview .website-info {
  display: flex;
  flex-direction: column;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview .website-info .website-domain {
  color: #65676b;
  font-size: 11px;
  text-transform: uppercase;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview .website-info .website-tagline {
  color: #050505;
  font-size: 15px;
  font-weight: 600;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview .learn-more-btn {
  background: #e4e6eb;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #050505;
  cursor: pointer;
  min-width: 100px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-website-preview .learn-more-btn:hover {
  background: #d8dadf;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-actions {
  padding: 4px 12px 12px;
  border-top: 1px solid #dddfe2;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-actions .action-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-actions .action-buttons .action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 4px;
  color: #65676b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-actions .action-buttons .action-btn svg {
  width: 18px;
  height: 18px;
}
#ai-assistant .create-ad-section .ad-summary .facebook-ad-preview .fb-ad-actions .action-buttons .action-btn:hover {
  background: #f0f2f5;
}
#ai-assistant .create-ad-section .ad-summary .campaign-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}
#ai-assistant .create-ad-section .ad-summary .campaign-details h6 {
  margin: 0 0 1rem;
  color: #333;
}
#ai-assistant .create-ad-section .ad-summary .campaign-details p {
  margin: 0.5rem 0;
  color: #666;
}
#ai-assistant .create-ad-section .loading-container {
  text-align: center;
  padding: 2rem;
}
#ai-assistant .create-ad-section .loading-container .loading-spinner {
  margin-bottom: 1rem;
}
#ai-assistant .create-ad-section .loading-container .progress-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
}
#ai-assistant .create-ad-section .loading-container .progress-bar .progress {
  height: 100%;
  background: #007bff;
  transition: width 0.3s ease;
}
#ai-assistant .create-ad-section .error-message {
  color: #dc3545;
  padding: 1rem;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 4px;
  margin-top: 1rem;
}
#ai-assistant .create-ad-section .success-message {
  color: #28a745;
  padding: 1rem;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 4px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#ai-assistant .create-ad-section .success-message svg {
  width: 24px;
  height: 24px;
}
#ai-assistant #voice-accent-modal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}
#ai-assistant #voice-accent-modal .modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
#ai-assistant #voice-accent-modal .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
#ai-assistant #voice-accent-modal .modal-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #E5E7EB;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 12px;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls .filter-group .filter-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .filter-controls .filter-group .filter-options .filter-btn.active {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item:hover {
  border-color: #2563EB;
  background: #F8FAFC;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item.selected {
  border-color: #2563EB;
  background: #EFF6FF;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item .accent-name {
  font-weight: 500;
  color: #111827;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item .voice-name {
  color: #6B7280;
  font-size: 0.875rem;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item .btn-link {
  color: #2563EB;
  text-decoration: none;
  padding: 4px 8px;
  font-size: 0.875rem;
}
#ai-assistant #voice-accent-modal .modal-body .voice-selection-section .voice-list .voice-item .btn-link:hover {
  background: #EFF6FF;
  border-radius: 4px;
}
#ai-assistant #voice-accent-modal .modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
#ai-assistant #voice-accent-modal .modal-footer .btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}
#ai-assistant #voice-accent-modal .modal-footer .btn.btn-secondary {
  background-color: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
}
#ai-assistant #voice-accent-modal .modal-footer .btn.btn-secondary:hover {
  background-color: #f3f4f6;
}
#ai-assistant #voice-accent-modal .modal-footer .btn.btn-primary {
  background-color: #4F46E5;
  border: 1px solid #4F46E5;
  color: #fff;
}
#ai-assistant #voice-accent-modal .modal-footer .btn.btn-primary:hover {
  background-color: #3a30e2;
}
#ai-assistant #voice-accent-modal .modal-footer .btn.btn-primary:disabled {
  background-color: #9CA3AF;
  border-color: #9CA3AF;
  cursor: not-allowed;
}
#salon-onboarding {
  height: calc(100vh - 100px);
  background-color: #f8f9fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#salon-onboarding .onboarding-container {
  max-width: 800px;
  width: 100%;
  height: calc(100vh - 100px);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
#salon-onboarding .onboarding-header {
  flex-shrink: 0;
  margin-bottom: 2rem;
}
#salon-onboarding .step-indicator {
  text-align: center;
}
#salon-onboarding .step-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
}
#salon-onboarding .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e9ecef;
  transition: background-color 0.3s ease;
}
#salon-onboarding .step-dot.active {
  background-color: #007bff;
}
#salon-onboarding .step-text {
  font-size: 14px;
  color: #6c757d;
}
#salon-onboarding .onboarding-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#salon-onboarding .step-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}
#salon-onboarding .step-content::-webkit-scrollbar {
  width: 8px;
}
#salon-onboarding .step-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#salon-onboarding .step-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
#salon-onboarding .step-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
#salon-onboarding .step-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}
#salon-onboarding .step-content .step-description {
  color: #6c757d;
  margin-bottom: 2rem;
}
#salon-onboarding .form-group {
  margin-bottom: 1.5rem;
}
#salon-onboarding .form-group label {
  display: block;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.5rem;
}
#salon-onboarding .form-group .form-control {
  width: 100%;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out;
}
#salon-onboarding .form-group .form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
#salon-onboarding .form-group .form-control.is-invalid {
  border-color: #dc3545;
}
#salon-onboarding .form-group .invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
#salon-onboarding .business-hours .day-row {
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 1rem;
}
#salon-onboarding .business-hours .day-row:hover {
  background-color: #f8f9fa;
}
#salon-onboarding .business-hours .day-header {
  margin-bottom: 1rem;
}
#salon-onboarding .business-hours .day-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#salon-onboarding .business-hours .day-toggle input[type="checkbox"] {
  display: none;
}
#salon-onboarding .business-hours .day-toggle .toggle-slider {
  width: 40px;
  height: 24px;
  background-color: #e9ecef;
  border-radius: 12px;
  margin-right: 1rem;
  position: relative;
  transition: background-color 0.3s ease;
}
#salon-onboarding .business-hours .day-toggle .toggle-slider:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}
#salon-onboarding .business-hours .day-toggle input[type="checkbox"]:checked + .toggle-slider {
  background-color: #007bff;
}
#salon-onboarding .business-hours .day-toggle input[type="checkbox"]:checked + .toggle-slider:before {
  transform: translateX(16px);
}
#salon-onboarding .business-hours .day-toggle .day-name {
  font-weight: 500;
}
#salon-onboarding .business-hours .time-inputs {
  display: flex;
  gap: 1rem;
  padding-left: 3.5rem;
}
#salon-onboarding .business-hours .time-inputs .time-field {
  flex: 1;
}
#salon-onboarding .business-hours .time-inputs .time-field label {
  font-size: 0.875rem;
  color: #6c757d;
}
#salon-onboarding .facebook-dev-setup {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 2rem;
}
#salon-onboarding .facebook-dev-setup .setup-steps {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
#salon-onboarding .facebook-dev-setup .setup-steps li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
#salon-onboarding .facebook-dev-setup .setup-steps li a {
  color: #007bff;
  text-decoration: none;
}
#salon-onboarding .facebook-dev-setup .setup-steps li a:hover {
  text-decoration: underline;
}
#salon-onboarding .facebook-dev-setup .form-group {
  margin-bottom: 0;
}
#salon-onboarding .facebook-dev-setup .form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
#salon-onboarding .facebook-dev-setup .form-group label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
#salon-onboarding .facebook-connect {
  text-align: center;
  padding: 2rem 0;
}
#salon-onboarding .facebook-connect .btn-facebook {
  background-color: #1877f2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#salon-onboarding .facebook-connect .btn-facebook:hover {
  background-color: #166fe5;
}
#salon-onboarding .facebook-connect .btn-facebook:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
}
#salon-onboarding .facebook-connect .btn-facebook .facebook-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
#salon-onboarding .connection-success {
  text-align: center;
  margin-top: 1.5rem;
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
#salon-onboarding .connection-success .success-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
#salon-onboarding .setup-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}
#salon-onboarding .setup-note p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
}
#salon-onboarding .onboarding-footer {
  flex-shrink: 0;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  background: transparent;
  position: relative;
  z-index: 1;
}
#salon-onboarding .onboarding-footer button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#salon-onboarding .onboarding-footer button .btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
#salon-onboarding .onboarding-footer button.btn-info {
  background-color: #f8f9fa;
  color: #212529;
}
#salon-onboarding .onboarding-footer button.btn-info:hover:not(:disabled) {
  background-color: #e9ecef;
}
#salon-onboarding .onboarding-footer button.btn-info:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}
#salon-onboarding .onboarding-footer button.btn-primary {
  background-color: #007bff;
  color: #fff;
}
#salon-onboarding .onboarding-footer button.btn-primary:hover {
  background-color: #0056b3;
}
#salon-onboarding .onboarding-footer button.btn-primary:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
}
#salon-onboarding .error-banner {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #dc3545;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #dc3545;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
  z-index: 2;
}
#salon-onboarding .error-banner .error-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
#salon-onboarding .success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
#salon-onboarding .success-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
#salon-onboarding .success-buttons .btn i {
  font-size: 1.2em;
}
#salon-onboarding .checkbox-group {
  margin-top: 0.5rem;
}
#salon-onboarding .checkbox-group.is-invalid .checkbox-item label {
  color: #dc3545;
}
#salon-onboarding .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
#salon-onboarding .checkbox-group .checkbox-item input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
}
#salon-onboarding .checkbox-group .checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}
#salon-onboarding .staff-list .staff-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
#salon-onboarding .staff-list .staff-item .btn-remove {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  width: 30px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}
#salon-onboarding .staff-list .staff-item .btn-remove:hover {
  background: #bd2130;
}
#salon-onboarding .staff-list .btn-add {
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
#salon-onboarding .staff-list .btn-add:hover {
  background: #1e7e34;
}
#salon-onboarding .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 0;
}
#salon-onboarding .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
#salon-onboarding .checkbox-label input[type="checkbox"].is-invalid {
  border-color: #dc3545;
}
#salon-onboarding textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
#salon-onboarding .trial-agreement {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}
#salon-onboarding .trial-agreement .checkbox-label {
  font-weight: 500;
  color: #212529;
}
#salon-onboarding .file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
#salon-onboarding .file-grid .file-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}
#salon-onboarding .file-grid .file-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#salon-onboarding .file-grid .file-item .file-icon {
  font-size: 2rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
#salon-onboarding .file-grid .file-item .file-icon i {
  transition: color 0.3s ease;
}
#salon-onboarding .file-grid .file-item .file-icon i.fa-file-word-o {
  color: #2b579a;
}
#salon-onboarding .file-grid .file-item .file-icon i.fa-file-powerpoint-o {
  color: #d24726;
}
#salon-onboarding .file-grid .file-item .file-icon i.fa-file-excel-o {
  color: #217346;
}
#salon-onboarding .file-grid .file-item .file-icon i.fa-file-text-o {
  color: #6c757d;
}
#salon-onboarding .file-grid .file-item .file-icon i.fa-file-pdf-o {
  color: #f40f02;
}
#salon-onboarding .file-grid .file-item .file-name {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#salon-onboarding .upload-section {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
#salon-onboarding .upload-section:hover {
  border-color: #007bff;
}
#salon-onboarding .upload-section .upload-icon {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
#salon-onboarding .upload-section h3 {
  font-size: 1.25rem;
  color: #212529;
  margin-bottom: 0.5rem;
}
#salon-onboarding .upload-section p {
  color: #6c757d;
  margin-bottom: 0.5rem;
}
#salon-onboarding .upload-section p.file-types {
  font-size: 0.875rem;
  color: #495057;
}
#salon-onboarding .dropzone {
  border: none;
  background: transparent;
  min-height: auto;
  padding: 0;
}
#salon-onboarding .dropzone .dz-preview {
  margin: 1rem;
}
#salon-onboarding .dropzone .dz-preview .dz-image {
  border-radius: 8px;
}
#salon-onboarding .dropzone .dz-preview .dz-error-message {
  min-width: 140px;
}
#salon-onboarding .dropzone .dz-preview .dz-success-mark,
#salon-onboarding .dropzone .dz-preview .dz-error-mark {
  background: #fff;
  border-radius: 50%;
  padding: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#salon-onboarding .dropzone.dz-drag-hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}
#salon-onboarding .materials-table {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#salon-onboarding .materials-table .table {
  margin-bottom: 0;
}
#salon-onboarding .materials-table .table th {
  background: #f8f9fa;
  border-top: none;
  font-weight: 600;
  color: #495057;
}
#salon-onboarding .materials-table .table td {
  vertical-align: middle;
  color: #212529;
}
#salon-onboarding .materials-table .table td .fa {
  font-size: 1.1em;
  margin-right: 0.5rem;
}
#salon-onboarding .materials-table .table td .fa.text-primary {
  color: #2b579a;
}
#salon-onboarding .materials-table .table td .fa.text-danger {
  color: #dc3545;
}
#salon-onboarding .materials-table .table td .fa.text-success {
  color: #28a745;
}
#salon-onboarding .materials-table .table td .fa.text-secondary {
  color: #6c757d;
}
#salon-onboarding .materials-table .table td .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
#salon-onboarding .materials-table .table td .btn .fa {
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
#salon-onboarding .materials-table .table tr:hover {
  background-color: #f8f9fa;
}
#salon-onboarding .agent-config-section {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
#salon-onboarding .agent-config-section:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#salon-onboarding .agent-config-section h3 {
  font-size: 1.25rem;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dee2e6;
}
#salon-onboarding .agent-config-section .form-group {
  margin-bottom: 1.25rem;
}
#salon-onboarding .agent-config-section .form-group:last-child {
  margin-bottom: 0;
}
#salon-onboarding .agent-config-section .form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#salon-onboarding .agent-config-section .form-group select.form-control {
  height: auto;
  padding: 0.5rem;
}
#verify .verification-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  margin: 2rem;
}
#verify .verification-icon {
  font-size: 3rem;
  color: #007bff;
}
#verify .verification-status {
  margin: 2rem 0;
}
#verify .verification-status .spinner-border {
  width: 2rem;
  height: 2rem;
}
#verify .info-box {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
#verify .info-box ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
#verify .info-box ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
#verify .info-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
}
#verify a {
  color: #007bff;
  text-decoration: none;
}
#verify a:hover {
  text-decoration: underline;
}
#onboarding-complete {
  min-height: calc(36vh);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#onboarding-complete .completion-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
#onboarding-complete .completion-container .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}
#onboarding-complete .completion-container .card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
#onboarding-complete .completion-container .card .subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 2rem;
}
#onboarding-complete .completion-container .card .progress-section {
  margin-bottom: 2rem;
}
#onboarding-complete .completion-container .card .progress-section .progress-text {
  font-size: 1rem;
  color: #6B7280;
  background: #F3F4F6;
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
}
#onboarding-complete .completion-container .card .setup-details {
  text-align: center;
}
#onboarding-complete .completion-container .card .setup-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}
#onboarding-complete .completion-container .card .setup-details .setup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
#onboarding-complete .completion-container .card .setup-details .setup-list li {
  background: #F3F4F6;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}
#onboarding-complete .completion-container .card .setup-details .setup-list li .setup-text {
  color: #4B5563;
  font-size: 1rem;
}
@media (max-width: 768px) {
  #onboarding-complete {
    padding: 1rem;
  }
  #onboarding-complete .completion-container {
    padding: 1rem;
  }
  #onboarding-complete .completion-container .card {
    padding: 1.5rem;
  }
  #onboarding-complete .completion-container .card h1 {
    font-size: 1.75rem;
  }
  #onboarding-complete .completion-container .card .subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  #faq code {
    word-break: break-all;
  }
  #faq [purpose='placeholder'] {
    word-break: break-all;
  }
}
